diff --git a/sql/000_ht_schema.sql b/sql/000_ht_schema.sql index e1df3fe..2eef773 100644 --- a/sql/000_ht_schema.sql +++ b/sql/000_ht_schema.sql @@ -39,6 +39,8 @@ CREATE TABLE `attributes` ( ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=28; +-- In production ht this is a derivative view +-- Is this actually used anywhere? DROP TABLE IF EXISTS `collection_names`; CREATE TABLE `collection_names` ( `collection` varchar(16) NOT NULL, @@ -46,18 +48,6 @@ CREATE TABLE `collection_names` ( ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -DROP TABLE IF EXISTS `ht_approval_requests`; -CREATE TABLE `ht_approval_requests` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `approver` varchar(255) DEFAULT NULL, - `userid` varchar(255) DEFAULT NULL, - `sent` timestamp NULL DEFAULT NULL, - `received` timestamp NULL DEFAULT NULL, - `renewed` timestamp NULL DEFAULT NULL, - `token_hash` varchar(255) DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; - DROP TABLE IF EXISTS `ht_billing_members`; CREATE TABLE `ht_billing_members` ( `inst_id` varchar(32) NOT NULL, @@ -129,7 +119,6 @@ CREATE TABLE `ht_institutions` ( `inst_id` varchar(64) PRIMARY KEY NOT NULL, `grin_instance` varchar(8) DEFAULT NULL, `name` varchar(256) DEFAULT NULL, - `template` varchar(256) DEFAULT NULL, `domain` varchar(32) DEFAULT NULL, `us` tinyint(1) NOT NULL DEFAULT 0, `mapto_inst_id` varchar(32) DEFAULT NULL, @@ -154,38 +143,6 @@ CREATE TABLE `ht_namespaces` ( ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -DROP TABLE IF EXISTS `ht_proxies`; -CREATE TABLE `ht_proxies` ( - `host` varchar(64) NOT NULL, - `ip` varchar(16) NOT NULL, - `time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' -) ENGINE=InnoDB DEFAULT CHARSET=latin1; - -DROP TABLE IF EXISTS `ht_logs`; -CREATE TABLE `ht_logs` ( - `model` varchar(255) DEFAULT NULL, - `objid` varchar(255) DEFAULT NULL, - `time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - `data` text -) ENGINE=InnoDB DEFAULT CHARSET=latin1; - -DROP TABLE IF EXISTS `ht_contacts`; -CREATE TABLE `ht_contacts` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `inst_id` varchar(64) NOT NULL, - `contact_type` int(11) NOT NULL, - `email` varchar(256) DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; - -DROP TABLE IF EXISTS `ht_contact_types`; -CREATE TABLE `ht_contact_types` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(256) NOT NULL, - `description` text DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; - DROP TABLE IF EXISTS `ht_users`; CREATE TABLE `ht_users` ( `userid` varchar(256) NOT NULL, diff --git a/sql/009_ht_proxies.sql b/sql/009_ht_proxies.sql deleted file mode 100644 index 648425b..0000000 --- a/sql/009_ht_proxies.sql +++ /dev/null @@ -1,8 +0,0 @@ -USE ht; -LOCK TABLES `ht_proxies` WRITE; -/*!40000 ALTER TABLE `ht_proxies` DISABLE KEYS */; -INSERT INTO `ht_proxies` VALUES ('www.crossfirewall.com','75.119.222.171','2011-01-18 23:12:19'); -INSERT INTO `ht_proxies` VALUES ('reserver.ru','69.10.38.26','2011-05-13 19:21:43'); -INSERT INTO `ht_proxies` VALUES ('appspot.l.google.com','209.85.147.141','2011-05-20 13:14:45'); -/*!40000 ALTER TABLE `ht_proxies` ENABLE KEYS */; -UNLOCK TABLES; diff --git a/sql/013_ht_institutions.sql b/sql/013_ht_institutions.sql index dfb2567..35968b5 100644 --- a/sql/013_ht_institutions.sql +++ b/sql/013_ht_institutions.sql @@ -16,328 +16,349 @@ LOCK TABLES `ht_institutions` WRITE; LOCK TABLES `ht_institutions` WRITE; /*!40000 ALTER TABLE `ht_institutions` DISABLE KEYS */; -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('abac', 'Abraham Baldwin Agricultural College', '', 'abac.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('allegheny', 'Allegheny College', '', 'allegheny.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('amherst', 'Amherst College', '', 'amherst.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('anu', 'Australian National University', '', 'anu.edu.au', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('aol', 'AOL', '', 'aol.com', 0, 0); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('archive', 'Internet Archive', '', 'archive.org', 1, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('arizona', 'University of Arizona', '', 'arizona.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('asu', 'Arizona State University', '', 'asu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('asurams', 'Albany State University', '', 'asurams.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('aub', 'American University of Beirut', '', 'aub.edu.lb', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('auburn', 'Auburn University', '', 'auburn.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('auckland', 'University of Auckland', '', 'auckland.ac.nz', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('augusta', 'Augusta University', '', 'augusta.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('bard', 'Bard College', '', 'bard.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('baylor', 'Baylor University', '', 'baylor.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('bc', 'Boston College', '', 'bc.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('bentley-umich', 'Bentley Historical Library, University of Michigan', '', 'bentley.umich.edu', 1, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('berkeley', 'University of California, Berkeley', '', 'berkeley.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('binghamton', 'Binghamton University', '', 'binghamton.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('bowdoin', 'Bowdoin College', '', 'bowdoin.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('brandeis', 'Brandeis University', '', 'brandeis.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('brocku', 'Brock University', '', 'brocku.ca', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('brooklynmuseum', 'Brooklyn Museum', '', 'brooklynmuseum.org', 1, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('brown', 'Brown University', '', 'brown.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('brynmawr', 'Bryn Mawr College', '', 'brynmawr.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('bu', 'Boston University', '', 'bu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('bucknell', 'Bucknell University', '', 'bucknell.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('buffalo', 'University At Buffalo, The State University of New York', '', 'buffalo.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('byu', 'Brigham Young University', '', 'byu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('cam', 'University of Cambridge', '', 'cam.ac.uk', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('carleton', 'Carleton College', '', 'carleton.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('carletonu', 'Carleton University', '', 'carleton.ca', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('case', 'Case Western Reserve University', '', 'case.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ccga', 'College of Coastal Georgia', '', 'ccga.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('cgu', 'Claremont Graduate University', '', 'cgu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uchicago', 'University of Chicago', '', 'uchicago.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('claremont', 'The Claremont Colleges Services', '', 'claremont.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('clarkart', 'Sterling and Francine Clark Art Institute', '', 'clarkart.edu', 1, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('clayton', 'Clayton State University', '', 'clayton.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('clements-umich', 'William L. Clements Library, University of Michigan', '', 'clements.umich.edu', 1, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('clemson', 'Clemson University', '', 'clemson.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('cmc', 'Claremont McKenna College', '', 'cmc.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('cmich', 'Central Michigan University', '', 'cmich.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('cmu', 'Carnegie Mellon University', '', 'cmu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('colby', 'Colby College', '', 'colby.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('colorado', 'University of Colorado Boulder', '', 'colorado.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('columbia', 'Columbia University', '', 'columbia.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('columbusstate', 'Columbus State University', '', 'columbusstate.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('conncoll', 'Connecticut College', '', 'conncoll.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('cornell', 'Cornell University', '', 'cornell.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('cwu', 'Central Washington University', '', 'cwu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('daltonstate', 'Dalton State College', '', 'daltonstate.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('dartmouth', 'Dartmouth College', '', 'dartmouth.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('davidson', 'Davidson College', '', 'davidson.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('depaul', 'DePaul University', '', 'depaul.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('depauw', 'DePauw University', '', 'depauw.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('dickinson', 'Dickinson College', '', 'dickinson.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('duke', 'Duke University', '', 'duke.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ega', 'East Georgia State College', '', 'ega.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('elon', 'Elon University', '', 'elon.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('emory', 'Emory University', '', 'emory.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('facebook', 'Facebook', '', 'facebook.com', 0, 3); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('famu', 'Florida A&M University', '', 'famu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('fau', 'Florida Atlantic University', '', 'fau.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('fgcu', 'Florida Gulf Coast University', '', 'fgcu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('fiu', 'Florida International University', '', 'fiu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('fiu-dev', 'Florida International University - Development IdP', '', 'fiu.edu', 1, 0); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('floridapoly', 'Florida Polytechnic', '', 'floridapoly.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('frick', 'The Frick Collection', '', 'frick.org', 1, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('fsu', 'Florida State University', '', 'fsu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('fsu-dev', 'Florida State University CAS IdP', '', 'fsu.edu', 1, 0); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('flbog', 'State University System of Florida', '', 'flbog.edu', 1, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('fvsu', 'Fort Valley State University', '', 'fvsu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('gatech', 'Georgia Institute of Technology', '', 'gatech.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('gc-cuny', 'CUNY Graduate School and University Center', '', 'gc.cuny.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('gcsu', 'Georgia College & State University', '', 'gcsu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('georgetown', 'Georgetown University', '', 'georgetown.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('georgiasouthern', 'Georgia Southern University', '', 'georgiasouthern.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('getty', 'Getty Research Institute', '', 'getty.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ggc', 'Georgia Gwinnett College', '', 'ggc.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('gmu', 'George Mason University', '', 'gmu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('google', 'Google', '', 'google.com', 0, 3); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('gordonstate', 'Gordon State College', '', 'gordonstate.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('grinnell', 'Grinnell College', '', 'grinnell.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('gsu', 'Georgia State University', '', 'gsu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('gsw', 'Georgia Southwestern State University', '', 'gsw.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('harvard', 'Harvard University', '', 'harvard.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('hathitrust', 'HathiTrust', '', 'hathitrust.org', 1, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('haverford', 'Haverford College', '', 'haverford.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('hawaii', 'University of Hawaii', '', 'hawaii.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('hawaii-test', 'University of Hawaii (Testing)', '', 'hawaii.edu', 1, 0); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('hec', 'HEC Montréal', '', 'hec.ca', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('highlands', 'Georgia Highlands College', '', 'highlands.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('hmc', 'Harvey Mudd College', '', 'hmc.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('howard', 'Howard University', '', 'howard.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ht_private', 'Private Donor', '', '', 0, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ht_support-microsoft', 'Digitization Support from Microsoft', '', '', 0, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('humboldt-old', 'Humboldt State University', '', 'humboldt.edu', 1, 0); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ias', 'IAS, via Princeton University', '', 'ias.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('iastate', 'Iowa State University', '', 'iastate.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('iu', 'Indiana University', '', 'iu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uiowa', 'University of Iowa', '', 'uiowa.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('jhu', 'Johns Hopkins University', '', 'jhu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('jmu', 'James Madison University', '', 'jmu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('keio', '慶應義塾大学 (Keio University)', '', 'keio.ac.jp', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('kennesaw', 'Kennesaw State University', '', 'kennesaw.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('kenyon', 'Kenyon College', '', 'kenyon.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('kgi', 'Keck Graduate Institute of Applied Life Sciences', '', 'kgi.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('knowledgeunlatched', 'Knowledge Unlatched', '', 'knowledgeunlatched.org', 0, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ksu', 'Kansas State University', '', 'ksu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ku', 'University of Kansas', '', 'ku.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('lafayette', 'Lafayette College', '', 'lafayette.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('lehigh', 'Lehigh University', '', 'lehigh.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('linkedin', 'LinkedIn', '', 'linkedin.com', 0, 3); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('live', 'Microsoft', '', 'live.com', 0, 3); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('loc', 'Library of Congress', '', 'loc.gov', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('loc-dev', 'Library of Congress Staging IdP', '', 'loc.gov', 1, 0); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('luc', 'Loyola University of Chicago', '', 'luc.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('macalester', 'Macalester College', '', 'macalester.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('mcgill', 'McGill University', '', 'mcgill.ca', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('mcmaster', 'McMaster University', '', 'mcmaster.ca', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('mdanderson', 'University of Texas M.D. Anderson Cancer Center', '', 'mdanderson.org', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('mga', 'Middle Georgia State University', '', 'mga.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('miami', 'University of Miami', '', 'miami.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('milproj-dc-umich', 'Millennium Project', '', 'milproj.dc.umich.edu', 1, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('umn', 'University of Minnesota', '', 'umn.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('missouri', 'University of Missouri - Columbia', '', 'missouri.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('mit', 'Massachusetts Institute of Technology', '', 'mit.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('mndigital', 'Minnesota Digital Library', '', 'mndigital.org', 1, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('mnhs', 'Minnesota Historical Society', '', 'mnhs.org', 1, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('monash', 'Monash University', '', 'monash.edu', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('montana', 'Montana State University', '', 'montana.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('msstate', 'Mississippi State University', '', 'msstate.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('msu', 'Michigan State University', '', 'msu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('mtholyoke', 'Mount Holyoke College', '', 'mtholyoke.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ncf', 'New College of Florida', '', 'ncf.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ncl', 'National Central Library', '', 'ncl.edu.tw', 0, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ncsu', 'North Carolina State University', '', 'ncsu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('nd', 'University of Notre Dame', '', 'nd.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('neu', 'Northeastern University', '', 'neu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('nfb', 'National Federation of the Blind', '', 'nfb.org', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('nmsu', 'New Mexico State University - Las Cruces Campus', '', 'nmsu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('northwestern', 'Northwestern University', '', 'northwestern.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('nypl', 'New York Public Library', '', 'nypl.org', 1, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('nyu', 'New York University', '', 'nyu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('odu', 'Old Dominion University', '', 'odu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ohio', 'Ohio University', '', 'ohio.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('okstate', 'Oklahoma State University', '', 'okstate.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('olemiss', 'University of Mississippi', '', 'olemiss.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('osu', 'The Ohio State University', '', 'osu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ou', 'University of Oklahoma', '', 'ou.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ox', 'University of Oxford', '', 'ox.ac.uk', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('pfw', 'Purdue University Fort Wayne', '', 'pfw.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('pitt', 'University of Pittsburgh', '', 'pitt.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('pitzer', 'Pitzer College', '', 'pitzer.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('pomona', 'Pomona College', '', 'pomona.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('press-umich', 'University of Michigan Press', '', 'press.umich.edu', 1, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('princeton', 'Princeton University', '', 'princeton.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('psu', 'Pennsylvania State University', '', 'psu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ptsem', 'Princeton Theological Seminary', '', 'ptsem.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('pugetsound', 'University of Puget Sound', '', 'pugetsound.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('purdue', 'Purdue University', '', 'purdue.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('queensu', "Queen's University", '', 'queensu.ca', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('reed', 'Reed College', '', 'reed.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('richmond', 'University of Richmond', '', 'richmond.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('rochester', 'University of Rochester', '', 'rochester.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('rutgers', 'Rutgers University', '', 'rutgers.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ryerson', 'Ryerson University', '', 'ryerson.ca', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('sandiego', 'University of San Diego', '', 'sandiego.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('savannahstate', 'Savannah State University', '', 'savannahstate.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('sc', 'University of South Carolina', '', 'sc.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('scrippscollege', 'Scripps College', '', 'scrippscollege.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('sfu', 'Simon Fraser University', '', 'sfu.ca', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('sgsc', 'South Georgia State College', '', 'sgsc.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('shu', 'Seton Hall University', '', 'shu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('sjsu', 'San Jose State University', '', 'sjsu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('smith', 'Smith College', '', 'smith.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('smu', 'Southern Methodist University', '', 'smu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('stanford', 'Stanford University', '', 'stanford.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('swarthmore', 'Swarthmore College', '', 'swarthmore.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('swmed', 'University of Texas Southwestern Medical Center', '', 'swmed.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('sydney', 'University of Sydney', '', 'sydney.edu.au', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('syr', 'Syracuse University', '', 'syr.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('tamu', 'Texas A&M University', '', 'tamu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('tcu', 'Texas Christian University', '', 'tcu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('technicalreports', 'Technical Report Archive & Image Library', '', 'technicalreports.org', 1, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('temple', 'Temple University', '', 'temple.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('trincoll', 'Trinity College', '', 'trincoll.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ttu', 'Texas Tech University', '', 'ttu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('tufts', 'Tufts University', '', 'tufts.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('tulane', 'Tulane University', '', 'tulane.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('twitter', 'Twitter', '', 'twitter.com', 0, 3); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('txstate', 'Texas State University - San Marcos', '', 'txstate.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ua', 'University of Alabama', '', 'ua.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ualberta', 'University of Alberta', '', 'ualberta.ca', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ubc', 'University of British Columbia', '', 'ubc.ca', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uc', 'University of Cincinnati', '', 'uc.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ucalgary', 'University of Calgary', '', 'ucalgary.ca', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ucdavis', 'University of California, Davis', '', 'ucdavis.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ucf', 'University of Central Florida', '', 'ucf.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uci', 'University of California, Irvine', '', 'uci.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ucla', 'University of California, Los Angeles', '', 'ucla.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ucla-dev', 'University of California, Los Angeles MFA test', '', 'ucla.edu', 1, 0); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ucm', 'Universidad Complutense de Madrid', '', 'ucm.es', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ucmerced', 'University of California, Merced', '', 'ucmerced.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uconn', 'University of Connecticut', '', 'uconn.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ucop', 'University of California, Office of the President', '', 'ucop.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ucr', 'University of California, Riverside', '', 'ucr.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ucsb', 'University of California, Santa Barbara', '', 'ucsb.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ucsc', 'University of California, Santa Cruz', '', 'ucsc.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ucsd', 'University of California, San Diego', '', 'ucsd.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ucsf', 'University of California, San Francisco', '', 'ucsf.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('udel', 'University of Delaware', '', 'udel.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ufl', 'University of Florida', '', 'ufl.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uga', 'University of Georgia', '', 'uga.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uh', 'University of Houston', '', 'lib.uh.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uh-new', 'University of Houston', '', 'uh.edu', 1, 0); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uic', 'University of Illinois at Chicago', '', 'uic.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('illinois', 'University of Illinois at Urbana-Champaign', '', 'illinois.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uky', 'University of Kentucky', '', 'uky.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('umanitoba', 'University of Manitoba', '', 'umanitoba.ca', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('umanitoba-dev', 'University Of Manitoba (Dev)', '', 'umanitoba.ca', 0, 0); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('umass', 'University of Massachusetts Amherst', '', 'umass.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('umd', 'University of Maryland, College Park', '', 'umd.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('umdl-umich', 'University of Michigan Library IT, Digital Library Production Service, Digital Conversion Unit', '', 'umdl.umich.edu', 1, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('unc', 'University of North Carolina at Chapel Hill', '', 'unc.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('unf', 'University of North Florida', '', 'unf.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ung', 'University of North Georgia', '', 'ung.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('unh', 'University of New Hampshire', '', 'unh.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('unimelb', 'University of Melbourne', '', 'unimelb.edu.au', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('union', 'Union College', '', 'union.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('universityofcalifornia', 'University of California', '', 'universityofcalifornia.edu', 1, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('unl', 'University of Nebraska - Lincoln', '', 'unl.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('unlv', 'University of Nevada - Las Vegas', '', 'unlv.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('unm', 'University of New Mexico', '', 'unm.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('unt', 'University of North Texas', '', 'unt.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uoguelph', 'University of Guelph', '', 'uoguelph.ca', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('umich', 'University of Michigan', '', 'umich.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uoregon', 'University of Oregon', '', 'uoregon.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uottawa', 'University of Ottawa', '', 'uottawa.ca', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('upenn', 'University of Pennsylvania', '', 'upenn.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uq', 'The University of Queensland', '', 'uq.edu.au', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uregina', 'University of Regina', '', 'uregina.ca', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('usask', 'University of Saskatchewan', '', 'usask.ca', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('usc', 'University of Southern California', '', 'usc.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('usf', 'University of South Florida', '', 'usf.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('usg', 'University System of Georgia', '', 'usg.edu', 1, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('usu', 'Utah State University', '', 'usu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('usupress', 'Utah State University Press', '', 'usupress.com', 1, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uta', 'University of Texas at Arlington', '', 'uta.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('utah', 'University of Utah', '', 'utah.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('utdallas', 'University of Texas at Dallas', '', 'utdallas.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('utep', 'University of Texas at El Paso', '', 'utep.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('utexas', 'University of Texas at Austin', '', 'utexas.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uth', 'University of Texas Health Science Center at Houston', '', 'uth.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('utk', 'University of Tennessee, Knoxville', '', 'utk.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('utmb', 'University of Texas Medical Branch At Galveston', '', 'utmb.edu', 1, 0); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('utoronto', 'University of Toronto', '', 'utoronto.ca', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('utrgv', 'University of Texas Rio Grande Valley', '', 'utrgv.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('utsa', 'University of Texas at San Antonio', '', 'utsa.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uuhhs', 'Unitarian Universalist History and Heritage Society', '', 'uuhhs.org', 1, 2); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('virginia', 'University of Virginia', '', 'virginia.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uvm', 'University of Vermont', '', 'uvm.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uwaterloo', 'University of Waterloo', '', 'uwaterloo.ca', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uwf', 'University of West Florida', '', 'uwf.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uwo', 'University of Western Ontario', '', 'uwo.ca', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uwyo', 'University of Wyoming', '', 'uwyo.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('valdosta', 'Valdosta State University', '', 'valdosta.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('vanderbilt', 'Vanderbilt University', '', 'vanderbilt.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('vassar', 'Vassar College', '', 'vassar.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('vcu', 'Virginia Commonwealth University', '', 'vcu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('vt', 'Virginia Tech', '', 'vt.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('washington', 'University of Washington', '', 'washington.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('wayne', 'Wayne State University', '', 'wayne.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('wellesley', 'Wellesley College', '', 'wellesley.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('wesleyan', 'Wesleyan University', '', 'wesleyan.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('westga', 'University of West Georgia', '', 'westga.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('wfu', 'Wake Forest University', '', 'wfu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('whitman', 'Whitman College', '', 'whitman.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('wichita', 'Wichita State University', '', 'wichita.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('willamette', 'Willamette University', '', 'willamette.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('williams', 'Williams College', '', 'williams.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('wisc', 'University of Wisconsin - Madison', '', 'wisc.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('wlu-ca', 'Wilfrid Laurier University', '', 'wlu.ca', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('wlu-edu', 'Washington and Lee University', '', 'wlu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('wm', 'William & Mary', '', 'wm.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('wooster', 'The College of Wooster', '', 'wooster.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('wpi', 'Worcester Polytechnic Institute', '', 'wpi.edu', 1, 0); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('wsu', 'Washington State University', '', 'wsu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('wustl', 'Washington University in St. Louis', '', 'wustl.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('wvu', 'West Virginia University', '', 'wvu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('xula', 'Xavier University of Louisiana', '', 'xula.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('yahoo', 'Yahoo!', '', 'yahoo.com', 0, 0); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('yale', 'Yale University', '', 'yale.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('yorku', 'York University', '', 'yorku.ca', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uri', 'University of Rhode Island', '', 'uri.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('si', 'Smithsonian Institution', '', 'si.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('wwu', 'Western Washington University', '', 'wwu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('trentu', 'Trent University', '', 'trentu.ca', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('northwestern-dev', 'Northwestern University (Test IdP)', '', 'northwestern.edu', 1, 0); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('beloit', 'Beloit College', '', 'beloit.edu', 1, 0); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('westpoint', 'United States Military Academy at West Point', '', 'westpoint.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('gvsu', 'Grand Valley State University', '', 'gvsu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('eckerd', 'Eckerd College', '', 'eckerd.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('oregonstate', 'Oregon State University', '', 'oregonstate.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('gwu', 'The George Washington University', '', 'gwu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('liberty', 'Liberty University', '', 'liberty.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('sdsu', 'San Diego State University', '', 'sdsu.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uga-openathens', 'University of Georgia (via OpenAthens)', '', 'uga.edu', 1, 0); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('ubc-openathens', 'University of British Columbia Library OpenAthens (UBC)', '', 'ubc.ca', 0, 0); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uct', 'University of Cape Town', '', 'uct.ac.za', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('simmons', 'Simmons University', '', 'simmons.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('vcccd', 'Ventura County Community College District', '', 'vcccd.edu', 1, 0); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('unomaha', 'University of Nebraska at Omaha', '', 'unomaha.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('humboldt', 'Humboldt State University', '', 'humboldt.edu', 1, 0); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('missouristate', 'Missouri State University Libraries', '', 'missouristate.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('uark', 'University of Arkansas', '', 'uark.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('drake', 'Drake University', '', 'drake.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('kent', 'Kent State University', '', 'kent.edu', 1, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('pratt', 'Pratt Institute', '', 'pratt.edu', 1, 0); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('wits', 'University of the Witwatersrand, Johannesburg', '', 'wits.ac.za', 0, 1); -INSERT INTO `ht_institutions` (inst_id, name, template, domain, us, enabled) VALUES ('aucegypt', 'The American University in Cairo', '', 'aucegypt.edu', 0, 0); +INSERT INTO `ht_institutions` VALUES ('abac',NULL,'Abraham Baldwin Agricultural College','abac.edu',1,'usg',NULL,1,'https://idp.abac.edu/openathens','^(member|alum|faculty|staff|student|employee)@abac.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('allegheny',NULL,'Allegheny College','allegheny.edu',1,'allegheny',NULL,1,'https://idp.allegheny.edu/openathens','^(member|alum|faculty|staff|student|employee)@allegheny.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('american',NULL,'American University Library (Washington, DC)','american.edu',1,'american',NULL,1,'https://idp.american.edu/entity','^(member|alum|faculty|staff|student|employee)@(american.edu)',NULL,NULL,'2022-08-19 17:49:25'); +INSERT INTO `ht_institutions` VALUES ('amherst',NULL,'Amherst College','amherst.edu',1,'amherst',NULL,1,'https://shibidp.amherst.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@amherst.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('aol',NULL,'AOL','aol.com',0,'aol',NULL,0,'https://aol.cirrusidentity.com/gateway',NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('archive',NULL,'Internet Archive','archive.org',1,'archive',NULL,2,NULL,NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('arizona',NULL,'University of Arizona','arizona.edu',1,'arizona',NULL,1,'urn:mace:incommon:arizona.edu','^(member|alum|faculty|staff|student|employee)@arizona.edu','http://shibboleth.arizona.edu/authnMethod/2FA',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('asu',NULL,'Arizona State University','asu.edu',1,'asu',NULL,1,'urn:mace:incommon:asu.edu','^(member|alum|faculty|staff|student|employee)@asu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('asurams',NULL,'Albany State University','asurams.edu',1,'usg',NULL,1,'https://idp.asurams.edu/openathens','^(member|alum|faculty|staff|student|employee)@asurams.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('aub',NULL,'American University of Beirut - الجامعة الأميركيّة في بيروت','aub.edu.lb',0,'aub',NULL,1,'https://idp.aub.edu.lb/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@aub.edu.lb',NULL,NULL,'2023-01-18 16:07:16'); +INSERT INTO `ht_institutions` VALUES ('auburn',NULL,'Auburn University','auburn.edu',1,'auburn',NULL,1,'https://webauth.auburn.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@auburn.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('augusta',NULL,'Augusta University','augusta.edu',1,'usg','University System of Georgia',1,'https://shfed.augusta.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@augusta.edu',NULL,NULL,'2024-10-23 19:14:50'); +INSERT INTO `ht_institutions` VALUES ('bard',NULL,'Bard College','bard.edu',1,'bard',NULL,1,'https://login.bard.edu/idp','^(member|alum|faculty|staff|student|employee)@bard.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('baylor',NULL,'Baylor University','baylor.edu',1,'baylor',NULL,1,'https://shibboleth-2.baylor.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@baylor.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('bc',NULL,'Boston College','bc.edu',1,'bc',NULL,1,'https://login.bc.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@bc.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('bentley-umich',NULL,'Bentley Historical Library, University of Michigan','bentley.umich.edu',1,'bentley-umich',NULL,2,NULL,NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('berkeley',NULL,'University of California, Berkeley','berkeley.edu',1,'universityofcalifornia',NULL,1,'urn:mace:incommon:berkeley.edu','^(member|alum|faculty|staff|student|employee|affiliate)@berkeley.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('binghamton',NULL,'Binghamton University','binghamton.edu',1,'binghamton',NULL,1,'https://idp.cc.binghamton.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@(binghamton.edu)',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('boisestate',NULL,'Boise State University','boisestate.edu',1,'boisestate',NULL,1,'https://weblogin.boisestate.edu/adfs/services/trust','^(member|alum|faculty|staff|student|employee)@(boisestate.edu)',NULL,NULL,'2024-01-29 21:18:33'); +INSERT INTO `ht_institutions` VALUES ('bowdoin',NULL,'Bowdoin College','bowdoin.edu',1,'bowdoin',NULL,1,'http://www.okta.com/exk5hc3l9unPpmx2V357','^(member|alum|faculty|staff|student|employee)@bowdoin.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('brandeis',NULL,'Brandeis University','brandeis.edu',1,'brandeis',NULL,1,'https://shibboleth.brandeis.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@brandeis.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('brocku',NULL,'Brock University','brocku.ca',0,'brocku',NULL,1,'http://adfs.brocku.ca/adfs/services/trust','^(member|alum|faculty|staff|student|employee)@brocku.ca',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('brooklynmuseum',NULL,'Brooklyn Museum','brooklynmuseum.org',1,'brooklynmuseum',NULL,2,NULL,NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('brown',NULL,'Brown University','brown.edu',1,'brown',NULL,1,'https://sso.brown.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@brown.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('brynmawr',NULL,'Bryn Mawr College','brynmawr.edu',1,'brynmawr',NULL,1,'https://idp.brynmawr.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@brynmawr.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('bu',NULL,'Boston University','bu.edu',1,'bu',NULL,1,'https://shib.bu.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@bu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('bucknell',NULL,'Bucknell University','bucknell.edu',1,'bucknell',NULL,1,'https://shib.bucknell.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@bucknell.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('buffalo',NULL,'University At Buffalo, The State University of New York','buffalo.edu',1,'buffalo',NULL,1,'urn:mace:incommon:buffalo.edu','^(member|alum|faculty|staff|student|employee|emeritus)@buffalo.edu',NULL,NULL,'2022-08-04 15:34:42'); +INSERT INTO `ht_institutions` VALUES ('byu',NULL,'Brigham Young University','byu.edu',1,'byu',NULL,1,'https://cas.byu.edu/cas/idp/metadata','^(member|alum|faculty|staff|student|employee)@byu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('cam',NULL,'University of Cambridge','cam.ac.uk',0,'cam',NULL,1,'https://shib.raven.cam.ac.uk/shibboleth','^(member|alum|faculty|staff|student|employee)@(cam.ac.uk|eresources.lib.cam.ac.uk)',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('carleton',NULL,'Carleton College','carleton.edu',1,'carleton',NULL,1,'urn:mace:incommon:carleton.edu','^(member|alum|faculty|staff|student|employee)@carleton.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('carletonu',NULL,'Carleton University','carleton.ca',0,'carletonu',NULL,1,'http://cufed.carleton.ca/adfs/services/trust','^(member|alum|faculty|staff|student|employee)@carleton.ca',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('case',NULL,'Case Western Reserve University','case.edu',1,'case',NULL,1,'https://idp.case.edu/openathens','^(member|alum|faculty|staff|student|employee)@case.edu',NULL,NULL,'2023-08-21 19:46:31'); +INSERT INTO `ht_institutions` VALUES ('ccga',NULL,'College of Coastal Georgia','ccga.edu',1,'usg',NULL,1,'https://idp.ccga.edu/openathens','^(member|alum|faculty|staff|student|employee)@ccga.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('cgu',NULL,'Claremont Graduate University','cgu.edu',1,'claremont','The Claremont Colleges',1,'https://webauth.cgu.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@cgu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('claremont',NULL,'The Claremont Colleges Services','claremont.edu',1,'claremont','The Claremont Colleges',1,'https://webauth.cuc.claremont.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@cuc.claremont.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('clarkart',NULL,'Sterling and Francine Clark Art Institute','clarkart.edu',1,'clarkart',NULL,2,NULL,NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('clarku',NULL,'Clark University','clarku.edu',1,'clarku',NULL,1,'https://sts.windows.net/b5b2263d-68aa-453e-b972-aa1421410f80/','^(member|alum|faculty|staff|student|employee)@clarku.edu',NULL,NULL,'2022-09-27 18:16:31'); +INSERT INTO `ht_institutions` VALUES ('clayton',NULL,'Clayton State University','clayton.edu',1,'usg',NULL,1,'https://idp.clayton.edu/openathens','^(member|alum|faculty|staff|student|employee)@clayton.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('clements-umich',NULL,'William L. Clements Library, University of Michigan','clements.umich.edu',1,'clements-umich',NULL,2,NULL,NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('clemson',NULL,'Clemson University','clemson.edu',1,'clemson',NULL,1,'urn:mace:incommon:clemson.edu','^(member|alum|faculty|staff|student|employee)@clemson.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('cmc',NULL,'Claremont McKenna College','cmc.edu',1,'claremont','The Claremont Colleges',1,'https://webauth.cmc.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@cmc.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('cmich',NULL,'Central Michigan University','cmich.edu',1,'cmich',NULL,1,'https://shibboleth.cmich.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@cmich.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('cmu',NULL,'Carnegie Mellon University','cmu.edu',1,'cmu',NULL,1,'https://login.cmu.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@andrew.cmu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('colby',NULL,'Colby College','colby.edu',1,'colby',NULL,1,'http://www.okta.com/exk1o1pee7gFPgAUf357','^(member|alum|faculty|staff|student|employee)@colby.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('colorado','CUB','University of Colorado Boulder','colorado.edu',1,'colorado',NULL,1,'https://fedauth.colorado.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@colorado.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('colostate',NULL,'Colorado State University','colostate.edu',1,'colostate',NULL,1,'https://shibidp.colostate.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@colostate.edu',NULL,NULL,'2023-03-03 21:46:41'); +INSERT INTO `ht_institutions` VALUES ('columbia','Columbia','Columbia University','columbia.edu',1,'columbia',NULL,1,'urn:mace:incommon:columbia.edu','^(member|alum|faculty|staff|student|employee)@columbia.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('columbusstate',NULL,'Columbus State University','columbusstate.edu',1,'usg',NULL,1,'https://idp.columbusstate.edu/openathens','^(member|alum|faculty|staff|student|employee)@columbusstate.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('conncoll',NULL,'Connecticut College','conncoll.edu',1,'conncoll',NULL,1,'https://cas.conncoll.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@conncoll.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('cornell','Cornell','Cornell University','cornell.edu',1,'cornell',NULL,1,'https://shibidp.cit.cornell.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@cornell.edu','https://refeds.org/profile/mfa',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('cua',NULL,'Catholic University of America','cua.edu',1,'cua',NULL,1,'https://idp.cua.edu','^(member|alum|faculty|staff|student|employee)@(cua|law|catholic|cardinalmail.cua).edu',NULL,NULL,'2022-10-12 18:27:12'); +INSERT INTO `ht_institutions` VALUES ('cwu',NULL,'Central Washington University','cwu.edu',1,'cwu',NULL,1,'https://idp.cwu.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@cwu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('daltonstate',NULL,'Dalton State College','daltonstate.edu',1,'usg',NULL,1,'https://idp.daltonstate.edu/openathens','^(member|alum|faculty|staff|student|employee)@daltonstate.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('dartmouth',NULL,'Dartmouth College','dartmouth.edu',1,'dartmouth',NULL,1,'urn:mace:incommon:dartmouth.edu','^(member|alum|faculty|staff|student|employee)@dartmouth.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('davidson',NULL,'Davidson College','davidson.edu',1,'davidson',NULL,1,'https://sts.windows.net/35d8763c-d2b1-4213-b629-f5df0af9e3c3/','^(member|alum|faculty|staff|student|employee)@davidson.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('denison',NULL,'Denison University','denison.edu',1,'denison',NULL,1,'login.denison.edu','^(member|alum|faculty|staff|student|employee)@denison.edu',NULL,NULL,'2024-10-31 15:49:07'); +INSERT INTO `ht_institutions` VALUES ('depaul',NULL,'DePaul University','depaul.edu',1,'depaul',NULL,1,'https://shib.is.depaul.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@depaul.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('depauw',NULL,'DePauw University','depauw.edu',1,'depauw',NULL,1,'https://idp.depauw.edu/openathens','^(member|alum|faculty|staff|student|employee)@depauw.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('dickinson',NULL,'Dickinson College','dickinson.edu',1,'dickinson',NULL,1,'https://auth.dickinson.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@dickinson.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('drake',NULL,'Drake University','drake.edu',1,'drake',NULL,1,'https://sts.windows.net/6f028129-009c-4b33-b633-bbfc58bbd960/','^(member|alum|faculty|staff|student|employee)@drake.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('drexel',NULL,'Drexel University','drexel.edu',0,'drexel',NULL,1,'https://connect.drexel.edu/idp','^(member|alum|faculty|staff|student|employee)@(drexel.edu)',NULL,NULL,'2023-06-19 13:37:29'); +INSERT INTO `ht_institutions` VALUES ('duke',NULL,'Duke University','duke.edu',1,'duke',NULL,1,'urn:mace:incommon:duke.edu','^(member|alum|faculty|staff|student|employee)@duke.edu','https://refeds.org/profile/mfa',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('eckerd',NULL,'Eckerd College','eckerd.edu',1,'eckerd',NULL,1,'https://shibboleth.aws.eckerd.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@(eckerd.edu)',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('eduhk',NULL,'Education University of Hong Kong','eduhk.hk',0,'eduhk',NULL,1,'https://nidp.eduhk.hk/nidp/saml2/metadata','^(member|alum|faculty|staff|student|employee)@eduhk.hk',NULL,NULL,'2023-11-29 15:37:01'); +INSERT INTO `ht_institutions` VALUES ('ega',NULL,'East Georgia State College','ega.edu',1,'usg',NULL,1,'https://idp.ega.edu/openathens','^(member|alum|faculty|staff|student|employee)@ega.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('elon',NULL,'Elon University','elon.edu',1,'elon',NULL,1,'https://idp.elon.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@elon.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('emory',NULL,'Emory University','emory.edu',1,'emory',NULL,1,'https://login.emory.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@emory.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('facebook',NULL,'Facebook','facebook.com',0,'facebook',NULL,0,'https://facebook.cirrusidentity.com/gateway',NULL,NULL,NULL,'2023-10-09 12:17:18'); +INSERT INTO `ht_institutions` VALUES ('famu',NULL,'Florida A&M University','famu.edu',1,'flbog',NULL,1,'https://idp.famu.edu/openathens','^(member|alum|faculty|staff|student|employee)@famu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('fandm',NULL,'Franklin & Marshall College','fandm.edu',1,'fandm',NULL,1,'https://fandm.us001-rapididentity.com/idp','^(member|alum|faculty|staff|student|employee)@(fandm.edu)',NULL,NULL,'2022-08-25 17:21:16'); +INSERT INTO `ht_institutions` VALUES ('fau',NULL,'Florida Atlantic University','fau.edu',1,'flbog','Florida State University System',1,'https://sso.fau.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@fau.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('fgcu',NULL,'Florida Gulf Coast University','fgcu.edu',1,'flbog',NULL,1,'https://idp.fgcu.edu/openathens','^(member|alum|faculty|staff|student|employee)@fgcu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('fiu',NULL,'Florida International University','fiu.edu',1,'flbog','Florida State University System',1,'https://signon.fiu.edu/idp','^(member|alum|faculty|staff|student|employee)@fiu.edu',NULL,NULL,'2023-05-31 20:58:33'); +INSERT INTO `ht_institutions` VALUES ('fiu-dev',NULL,'Florida International University - Development IdP','fiu.edu',1,'flbog','Florida State University System',0,'https://authfed.fiu.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@fiu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('flbog',NULL,'State University System of Florida','flbog.edu',1,'flbog',NULL,2,NULL,NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('floridapoly',NULL,'Florida Polytechnic','floridapoly.edu',1,'flbog',NULL,1,'https://idp.floridapoly.edu/openathens','^(member|alum|faculty|staff|student|employee)@floridapoly.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('frick',NULL,'The Frick Collection','frick.org',1,'frick',NULL,2,NULL,NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('fsu',NULL,'Florida State University','fsu.edu',1,'flbog','Florida State University System',1,'https://idp.fsu.edu/openathens','^(member|alum|faculty|staff|student|employee)@fsu.edu',NULL,NULL,'2022-08-22 13:16:17'); +INSERT INTO `ht_institutions` VALUES ('fsu-dev',NULL,'Florida State University CAS IdP','fsu.edu',1,'flbog','Florida State University System',0,'https://idp.fsu.edu','^(member|alum|faculty|staff|student|employee)@fsu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('fvsu',NULL,'Fort Valley State University','fvsu.edu',1,'usg',NULL,1,'https://idp.fvsu.edu/openathens','^(member|alum|faculty|staff|student|employee)@fvsu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('gatech',NULL,'Georgia Institute of Technology','gatech.edu',1,'usg',NULL,1,'https://idp.gatech.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@gatech.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('gc-cuny',NULL,'CUNY Graduate School and University Center','gc.cuny.edu',1,'gc-cuny',NULL,0,'https://sso.gc.cuny.edu/idp/shibboleth',NULL,NULL,NULL,'2024-01-15 14:28:50'); +INSERT INTO `ht_institutions` VALUES ('gcsu',NULL,'Georgia College & State University','gcsu.edu',1,'usg',NULL,1,'https://idp.gcsu.edu/openathens','^(member|alum|faculty|staff|student|employee)@gcsu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('georgetown',NULL,'Georgetown University','georgetown.edu',1,'georgetown',NULL,1,'https://shibb-idp.georgetown.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@georgetown.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('georgiasouthern',NULL,'Georgia Southern University','georgiasouthern.edu',1,'usg',NULL,1,'https://idp.georgiasouthern.edu/openathens','^(member|alum|faculty|staff|student|employee)@georgiasouthern.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('getty',NULL,'Getty Research Institute','getty.edu',1,'getty',NULL,1,'https://idp.getty.edu/idp','^(member|alum|faculty|staff|student|employee)@getty.edu',NULL,NULL,'2025-01-28 14:01:58'); +INSERT INTO `ht_institutions` VALUES ('ggc',NULL,'Georgia Gwinnett College','ggc.edu',1,'usg',NULL,1,'https://idp.ggc.edu/openathens','^(member|alum|faculty|staff|student|employee)@ggc.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('gmu',NULL,'George Mason University','gmu.edu',1,'gmu',NULL,1,'https://shibboleth.gmu.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@gmu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('google',NULL,'Google','google.com',0,'google',NULL,3,'https://google.cirrusidentity.com/gateway',NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('gordonstate',NULL,'Gordon State College','gordonstate.edu',1,'usg',NULL,1,'https://idp.gordonstate.edu/openathens','^(member|alum|faculty|staff|student|employee)@gordonstate.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('grinnell',NULL,'Grinnell College','grinnell.edu',1,'grinnell',NULL,1,'https://idp.grinnell.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@grinnell.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('gsu',NULL,'Georgia State University','gsu.edu',1,'usg','University System of Georgia',1,'https://idp.gsu.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@gsu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('gsw',NULL,'Georgia Southwestern State University','gsw.edu',1,'usg',NULL,1,'https://idp.gsw.edu/openathens','^(member|alum|faculty|staff|student|employee)@gsw.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('gvsu',NULL,'Grand Valley State University','gvsu.edu',1,'gvsu',NULL,1,'http://www.okta.com/exkhjcdrc4hgB3LwG697','^(member|alum|faculty|staff|student|employee)@gvsu.edu',NULL,NULL,'2024-09-04 13:31:03'); +INSERT INTO `ht_institutions` VALUES ('gwu',NULL,'The George Washington University','gwu.edu',1,'gwu',NULL,1,'https://sts.windows.net/d689239e-c492-40c6-b391-2c5951d31d14/','^(member|alum|faculty|staff|student|employee)@(gwu.edu)',NULL,NULL,'2022-11-28 14:11:46'); +INSERT INTO `ht_institutions` VALUES ('harvard','Harvard','Harvard University','harvard.edu',1,'harvard',NULL,1,'https://fed.huit.harvard.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@harvard.edu','https://refeds.org/profile/mfa',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('hathitrust',NULL,'HathiTrust','hathitrust.org',1,'umich',NULL,2,'https://idp.hathitrust.org/entity','^(member|alum|faculty|staff|student|employee)@hathitrust.org',NULL,'^(faculty|staff|student|employee)@hathitrust.org','2024-01-23 13:46:16'); +INSERT INTO `ht_institutions` VALUES ('haverford',NULL,'Haverford College','haverford.edu',1,'haverford',NULL,1,'https://idp.haverford.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@haverford.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('hawaii',NULL,'University of Hawaii','hawaii.edu',1,'hawaii',NULL,1,'https://idp.hawaii.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@hawaii.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('hawaii-test',NULL,'University of Hawaii (Testing)','hawaii.edu',1,'hawaii',NULL,0,'https://idp-test.its.hawaii.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@hawaii.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('hec',NULL,'HEC Montréal','hec.ca',0,'hec',NULL,1,'https://cas.hec.ca/idp/metadata','^(member|alum|faculty|staff|student|employee)@hec.ca',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('highlands',NULL,'Georgia Highlands College','highlands.edu',1,'usg',NULL,1,'https://idp.highlands.edu/openathens','^(member|alum|faculty|staff|student|employee)@highlands.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('hmc',NULL,'Harvey Mudd College','hmc.edu',1,'claremont','The Claremont Colleges',1,'https://identity.hmc.edu/idp','^(member|alum|faculty|staff|student|employee)@hmc.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('hofstra',NULL,'Hofstra University','hofstra.edu',1,'hofstra',NULL,1,'https://login.hofstra.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@hofstra.edu',NULL,NULL,'2024-08-12 18:37:20'); +INSERT INTO `ht_institutions` VALUES ('howard',NULL,'Howard University','howard.edu',1,'howard',NULL,1,'https://sts.windows.net/02ac0c07-b75f-46bf-9b13-3630ba94bb69/','^(member|alum|faculty|staff|student|employee)@howard.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ht_private',NULL,'Private Donor','',0,'ht_private',NULL,2,NULL,NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('ht_support-microsoft',NULL,'Digitization Support from Microsoft','',0,'ht_support-microsoft',NULL,2,NULL,NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('humboldt',NULL,'Humboldt State University','humboldt.edu',1,'humboldt',NULL,0,'https://sso.humboldt.edu/idp/metadata',NULL,NULL,NULL,'2024-10-23 13:12:12'); +INSERT INTO `ht_institutions` VALUES ('humboldt-old',NULL,'Humboldt State University','humboldt.edu',1,'humboldt',NULL,0,'urn:mace:incommon:humboldt.edu',NULL,NULL,NULL,'2024-10-23 13:12:24'); +INSERT INTO `ht_institutions` VALUES ('ias',NULL,'IAS, via Princeton University','ias.edu',1,'princeton','Princeton University',1,'https://idp.ias.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@ias.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('iastate',NULL,'Iowa State University','iastate.edu',1,'iastate',NULL,1,'https://idp.iastate.edu/openathens','^(member|alum|faculty|staff|student|employee)@iastate.edu',NULL,NULL,'2025-02-12 18:52:11'); +INSERT INTO `ht_institutions` VALUES ('illinois','UIUC','University of Illinois at Urbana-Champaign','illinois.edu',1,'illinois',NULL,1,'urn:mace:incommon:uiuc.edu','^(member|alum|faculty|staff|student|employee)@illinois.edu','https://refeds.org/profile/mfa',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('iu','IND','Indiana University','iu.edu',1,'iu',NULL,1,'https://idp.login.iu.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@iu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('jhu',NULL,'Johns Hopkins University','jhu.edu',1,'jhu',NULL,1,'urn:mace:incommon:johnshopkins.edu','^(member|alum|faculty|staff|student|employee)@johnshopkins.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('jmu',NULL,'James Madison University','jmu.edu',1,'jmu',NULL,1,'https://idp.jmu.edu/openathens','^(member|alum|faculty|staff|student|employee)@jmu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('keio','Keio','Keio University 慶應義塾大学 ','keio.ac.jp',0,'keio',NULL,1,'https://gakunin1.keio.ac.jp/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@(keio.ac.jp)',NULL,NULL,'2023-05-22 20:12:45'); +INSERT INTO `ht_institutions` VALUES ('kennesaw',NULL,'Kennesaw State University','kennesaw.edu',1,'usg','University System of Georgia',1,'https://idp.kennesaw.edu/openathens','^(member|alum|faculty|staff|student|employee)@kennesaw.edu',NULL,NULL,'2023-12-15 20:09:16'); +INSERT INTO `ht_institutions` VALUES ('kent',NULL,'Kent State University','kent.edu',1,'kent',NULL,1,'https://sts.windows.net/e5a06f4a-1ec4-4d01-8f73-e7dd15f26134/','^(member|alum|faculty|staff|student|employee)@kent.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('kenyon',NULL,'Kenyon College','kenyon.edu',1,'kenyon',NULL,1,'https://sso.kenyon.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@kenyon.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('kgi',NULL,'Keck Graduate Institute of Applied Life Sciences','kgi.edu',1,'claremont','The Claremont Colleges',1,'https://webauth.kgi.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@kgi.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('knowledgeunlatched',NULL,'Knowledge Unlatched','knowledgeunlatched.org',0,'knowledgeunlatched',NULL,2,NULL,NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('ksu',NULL,'Kansas State University','ksu.edu',1,'ksu',NULL,1,'https://signin.k-state.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@ksu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ku',NULL,'University of Kansas','ku.edu',1,'ku',NULL,1,'https://shibidp.ku.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@ku.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('lafayette',NULL,'Lafayette College','lafayette.edu',1,'lafayette',NULL,1,'urn:mace:incommon:lafayette.edu','^(member|alum|faculty|staff|student|employee)@lafayette.edu','https://refeds.org/profile/mfa',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('lehigh',NULL,'Lehigh University','lehigh.edu',1,'lehigh',NULL,1,'https://sso.cc.lehigh.edu/sso/saml2/idp/metadata.php','^(member|alum|faculty|staff|student|employee)@lehigh.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('liberty',NULL,'Liberty University','liberty.edu',1,'liberty',NULL,1,'https://shibboleth.liberty.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@(liberty.edu)',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('linkedin',NULL,'LinkedIn','linkedin.com',0,'linkedin',NULL,3,'https://linkedin.cirrusidentity.com/gateway',NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('live',NULL,'Microsoft','live.com',0,'live',NULL,3,'https://win-live.cirrusidentity.com/gateway',NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('loc',NULL,'Library of Congress','loc.gov',1,'loc',NULL,1,'https://idpvlp01.loc.gov/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@loc.gov',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('loc-dev',NULL,'Library of Congress Staging IdP','loc.gov',1,'loc-dev',NULL,0,'https://lcidpdev01.loc.gov/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@loc.gov',NULL,NULL,'2023-01-11 17:43:13'); +INSERT INTO `ht_institutions` VALUES ('luc',NULL,'Loyola University of Chicago','luc.edu',1,'luc',NULL,1,'https://shibidp.luc.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee|enrolled_student|student_worker|matr_student)@luc.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('macalester',NULL,'Macalester College','macalester.edu',1,'macalester',NULL,1,'https://idp.macalester.edu/openathens','^(member|alum|faculty|staff|student|employee)@macalester.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('mcgill',NULL,'McGill University','mcgill.ca',0,'mcgill',NULL,1,'https://shibboleth.mcgill.ca/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@mcgill.ca',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('mcmaster',NULL,'McMaster University','mcmaster.ca',0,'mcmaster',NULL,1,'https://sso.mcmaster.ca/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@mcmaster.ca',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('mdanderson',NULL,'University of Texas M.D. Anderson Cancer Center','mdanderson.org',1,'utexas','The University of Texas',1,'https://shib.mdanderson.org/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@mdanderson.org',NULL,NULL,'2023-05-05 13:07:35'); +INSERT INTO `ht_institutions` VALUES ('mga',NULL,'Middle Georgia State University','mga.edu',1,'usg',NULL,1,'https://idp.mga.edu/openathens','^(member|alum|faculty|staff|student|employee)@mga.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('miami',NULL,'University of Miami','miami.edu',1,'miami',NULL,1,'https://sts.windows.net/2a144b72-f239-42d4-8c0e-6f0f17c48e33/','^(member|alum|faculty|staff|student|employee)@miami.edu',NULL,NULL,'2025-07-23 14:57:42'); +INSERT INTO `ht_institutions` VALUES ('milproj-dc-umich',NULL,'Millennium Project','milproj.dc.umich.edu',1,'milproj-dc-umich',NULL,2,NULL,NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('missouri',NULL,'University of Missouri - Columbia','missouri.edu',1,'missouri',NULL,1,'https://shib-idp.umsystem.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@missouri.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('missouristate',NULL,'Missouri State University Libraries','missouristate.edu',1,'missouristate',NULL,1,'https://idp.missouristate.edu/openathens','^(member|alum|faculty|staff|student|employee)@(missouristate.edu)',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('mit',NULL,'Massachusetts Institute of Technology','mit.edu',1,'mit',NULL,1,'urn:mace:incommon:mit.edu','^(member|alum|faculty|staff|student|employee)@mit.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('mndigital',NULL,'Minnesota Digital Library','mndigital.org',1,'mndigital',NULL,2,NULL,NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('mnhs',NULL,'Minnesota Historical Society','mnhs.org',1,'mnhs',NULL,2,NULL,NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('monash',NULL,'Monash University','monash.edu',0,'monash',NULL,1,'http://www.okta.com/exk375o7dgmAtaMBE2p7','^(member|alum|faculty|staff|student|employee)@monash.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('montana',NULL,'Montana State University','montana.edu',1,'montana',NULL,1,'https://login.montana.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@(montana|msubillings|gfcmsu|msun).edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('msstate',NULL,'Mississippi State University','msstate.edu',1,'msstate',NULL,1,'https://shibboleth.its.msstate.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@msstate.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('msu','MSU','Michigan State University','msu.edu',1,'msu',NULL,1,'urn:mace:incommon:msu.edu','^(member|alum|faculty|staff|student|employee)@msu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('mtholyoke',NULL,'Mount Holyoke College','mtholyoke.edu',1,'mtholyoke',NULL,1,'https://login.mtholyoke.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@mtholyoke.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('mun',NULL,'Memorial University of Newfoundland','mun.ca',0,'mun',NULL,1,'https://login.mun.ca/cas/idp','^(member|alum|faculty|staff|student|employee)@(mun.ca)',NULL,NULL,'2022-08-30 17:06:37'); +INSERT INTO `ht_institutions` VALUES ('muohio',NULL,'Miami University','muohio.edu',1,'muohio',NULL,1,'urn:mace:incommon:muohio.edu','^(member|alum|faculty|staff|student|employee)@(muohio.edu|miamioh.edu)',NULL,NULL,'2023-11-10 15:56:07'); +INSERT INTO `ht_institutions` VALUES ('ncf',NULL,'New College of Florida','ncf.edu',1,'flbog',NULL,1,'https://idp.ncf.edu/openathens','^(member|alum|faculty|staff|student|employee)@ncf.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ncl',NULL,'National Central Library','ncl.edu.tw',0,'ncl',NULL,2,NULL,NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('ncsu',NULL,'North Carolina State University','ncsu.edu',1,'ncsu',NULL,1,'urn:mace:incommon:ncsu.edu','^(member|alum|faculty|staff|student|employee)@ncsu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('nd',NULL,'University of Notre Dame','nd.edu',1,'nd',NULL,1,'https://login.nd.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@nd.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('neu',NULL,'Northeastern University','neu.edu',1,'neu',NULL,1,'https://neuidmsso.neu.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@neu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('nfb',NULL,'National Federation of the Blind','nfb.org',1,'nfb',NULL,0,'pumex-idp',NULL,NULL,NULL,'2024-10-23 13:17:12'); +INSERT INTO `ht_institutions` VALUES ('nmsu',NULL,'New Mexico State University - Las Cruces Campus','nmsu.edu',1,'nmsu',NULL,1,'https://sso.nmsu.edu/idp','^(member|alum|faculty|staff|student|employee)@nmsu.edu',NULL,NULL,'2025-02-06 19:59:06'); +INSERT INTO `ht_institutions` VALUES ('northwestern','NWU','Northwestern University','northwestern.edu',1,'northwestern',NULL,1,'urn:mace:incommon:northwestern.edu','^(member|alum|faculty|staff|student|employee|garrett|scsolliaffiliate|nuseaburyaffiliate|seabury)@northwestern.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('northwestern-dev',NULL,'Northwestern University (Test IdP)','northwestern.edu',1,'northwestern',NULL,0,'https://fed-uat.it.northwestern.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee|garrett|scsolliaffiliate)@northwestern.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('nypl','NYPL','New York Public Library','nypl.org',1,'nypl',NULL,1,'https://shibboleth.nypl.org/idp/shibboleth','^(member|faculty|staff|employee)@nypl.org',NULL,NULL,'2024-10-23 13:05:15'); +INSERT INTO `ht_institutions` VALUES ('nyu',NULL,'New York University','nyu.edu',1,'nyu',NULL,1,'urn:mace:incommon:nyu.edu','^(member|alum|faculty|staff|student|employee|employee)@nyu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('oberlin',NULL,'Oberlin College and Conservatory','oberlin.edu',1,'oberlin',NULL,1,'https://id.oberlin.edu/idp','^(member|alum|faculty|staff|student|employee)@oberlin.edu',NULL,NULL,'2025-06-11 14:12:39'); +INSERT INTO `ht_institutions` VALUES ('odu',NULL,'Old Dominion University','odu.edu',1,'odu',NULL,1,'urn:mace:incommon:odu.edu','^(member|alum|faculty|staff|student|employee)@(odu.edu)',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ohio',NULL,'Ohio University','ohio.edu',1,'ohio',NULL,1,'urn:mace:incommon:ohio.edu','^(member|alum|faculty|staff|student|employee)@(ohio.edu)',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('okstate',NULL,'Oklahoma State University','okstate.edu',1,'okstate',NULL,1,'https://idp.okstate.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@okstate.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('olemiss',NULL,'University of Mississippi','olemiss.edu',1,'olemiss',NULL,1,'https://umshibp.olemiss.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@olemiss.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('oregonstate',NULL,'Oregon State University','oregonstate.edu',1,'oregonstate',NULL,1,'https://login.oregonstate.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@(oregonstate.edu)',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('osu','OSU','The Ohio State University','osu.edu',1,'osu',NULL,1,'urn:mace:incommon:osu.edu','^(member|alum|faculty|staff|student|employee)@osu.edu','urn:mace:osu.edu:shibboleth:ac:classes:mfa',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ou',NULL,'University of Oklahoma','ou.edu',1,'ou',NULL,1,'https://shib.ou.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@ou.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ox',NULL,'University of Oxford','ox.ac.uk',0,'ox',NULL,1,'https://registry.shibboleth.ox.ac.uk/idp','^(member|alum|faculty|staff|student|employee)@ox.ac.uk',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('oxy',NULL,'Occidental College','oxy.edu',0,'oxy',NULL,1,'https://idp.oxy.edu/idp','^(member|alum|faculty|staff|student|employee)@(oxy.edu)',NULL,NULL,'2023-10-26 18:20:54'); +INSERT INTO `ht_institutions` VALUES ('pdx',NULL,'Portland State University','pdx.edu',1,'pdx',NULL,1,'https://sso.pdx.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@(pdx.edu)',NULL,NULL,'2024-09-16 12:08:47'); +INSERT INTO `ht_institutions` VALUES ('pfw',NULL,'Purdue University Fort Wayne','pfw.edu',1,'purdue','Purdue University',1,'https://shibadprod.pfw.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@pfw.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('pitt',NULL,'University of Pittsburgh','pitt.edu',1,'pitt',NULL,1,'https://passport.pitt.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@pitt.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('pitzer',NULL,'Pitzer College','pitzer.edu',1,'claremont','The Claremont Colleges',1,'https://webauth.pitzer.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@pitzer.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('pomona',NULL,'Pomona College','pomona.edu',1,'claremont','The Claremont Colleges',1,'https://websso.pomona.edu/','^(member|alum|faculty|staff|student|employee)@pomona.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('pratt',NULL,'Pratt Institute','pratt.edu',1,'pratt',NULL,1,'http://login.pratt.edu/adfs/services/trust','^(member|alum|faculty|staff|student|employee)@pratt.edu',NULL,NULL,'2022-07-14 18:56:08'); +INSERT INTO `ht_institutions` VALUES ('press-umich',NULL,'University of Michigan Press','press.umich.edu',1,'press-umich',NULL,2,NULL,NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('princeton','PRNC','Princeton University','princeton.edu',1,'princeton',NULL,1,'https://idp.princeton.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@princeton.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('psu','PSU','Pennsylvania State University','psu.edu',1,'psu',NULL,1,'urn:mace:incommon:psu.edu','^(member|alum|faculty|staff|student|employee)@psu.edu','urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ptsem',NULL,'Princeton Theological Seminary','ptsem.edu',1,'ptsem',NULL,1,'https://idp.ptsem.edu/openathens','^(member|alum|faculty|staff|student|employee)@ptsem.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('pugetsound',NULL,'University of Puget Sound','pugetsound.edu',1,'pugetsound',NULL,1,'https://idp.pugetsound.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@pugetsound.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('purdue','PURD','Purdue University','purdue.edu',1,'purdue',NULL,1,'https://idp.purdue.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@purdue.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('purdue-openathens',NULL,'Purdue University (OpenAthens)','purdue.edu',1,'purdue','Purdue University',0,'https://idp.purdue.edu/entity','^(member|alum|faculty|staff|student|employee)@purdue.edu',NULL,NULL,'2023-03-13 17:03:37'); +INSERT INTO `ht_institutions` VALUES ('queensu',NULL,'Queen\'s University','queensu.ca',0,'queensu',NULL,1,'https://login.queensu.ca/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@queensu.ca',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('reed',NULL,'Reed College','reed.edu',1,'reed',NULL,1,'https://idp.reed.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@reed.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('richmond',NULL,'University of Richmond','richmond.edu',1,'richmond',NULL,1,'urn:mace:incommon:richmond.edu','^(member|alum|faculty|staff|student|employee)@richmond.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('rochester',NULL,'University of Rochester','rochester.edu',1,'rochester',NULL,1,'https://uidp-prod.its.rochester.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@rochester.edu',NULL,NULL,'2023-01-25 15:13:47'); +INSERT INTO `ht_institutions` VALUES ('rutgers','RUTGERS','Rutgers University','rutgers.edu',1,'rutgers',NULL,1,'urn:mace:incommon:rutgers.edu','^(member|alum|faculty|staff|student|employee)@rutgers.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('sandiego',NULL,'University of San Diego','sandiego.edu',1,'sandiego',NULL,1,'https://shibsso.sandiego.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@sandiego.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('savannahstate',NULL,'Savannah State University','savannahstate.edu',1,'usg',NULL,1,'https://idp.savannahstate.edu/openathens','^(member|alum|faculty|staff|student|employee)@savannahstate.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('sc',NULL,'University of South Carolina','sc.edu',1,'sc',NULL,1,'https://idp.sc.edu/entity','^(member|alum|faculty|staff|student|employee)@sc.edu',NULL,NULL,'2022-05-09 13:04:18'); +INSERT INTO `ht_institutions` VALUES ('scrippscollege',NULL,'Scripps College','scrippscollege.edu',1,'claremont','The Claremont Colleges',1,'https://webauth.scrippscollege.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@scrippscollege.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('sdsu',NULL,'San Diego State University','sdsu.edu',1,'sdsu',NULL,1,'https://sts.windows.net/9673e9a8-aa57-4461-9336-5fd3f0034e18/','^(member|alum|faculty|staff|student|employee)@sdsu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('sfu',NULL,'Simon Fraser University','sfu.ca',0,'sfu',NULL,0,'https://idp.sfu.ca/entity',NULL,NULL,NULL,'2024-01-15 14:29:08'); +INSERT INTO `ht_institutions` VALUES ('sgsc',NULL,'South Georgia State College','sgsc.edu',1,'usg',NULL,1,'https://idp.sgsc.edu/openathens','^(member|alum|faculty|staff|student|employee)@sgsc.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('shu',NULL,'Seton Hall University','shu.edu',1,'shu',NULL,1,'https://idp.shu.edu/openathens','^(member|alum|faculty|staff|student|employee)@(shu.edu)',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('si',NULL,'Smithsonian Institution','si.edu',1,'si',NULL,1,'https://sso.si.edu/idp','^(member|alum|faculty|staff|student|employee)@(si.edu)',NULL,NULL,'2025-06-25 17:51:44'); +INSERT INTO `ht_institutions` VALUES ('simmons',NULL,'Simmons University','simmons.edu',1,'simmons',NULL,1,'https://idp.simmons.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@(simmons.edu)',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('sjsu',NULL,'San Jose State University','sjsu.edu',1,'sjsu',NULL,1,'https://idp01.sjsu.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@sjsu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('smith',NULL,'Smith College','smith.edu',1,'smith',NULL,1,'https://login.smith.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@smith.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('smu',NULL,'Southern Methodist University','smu.edu',1,'smu',NULL,1,'https://idp.smu.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@smu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('stanford',NULL,'Stanford University','stanford.edu',1,'stanford',NULL,1,'urn:mace:incommon:stanford.edu','^(member|alum|faculty|staff|student|employee)@stanford.edu','https://refeds.org/profile/mfa',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('stonybrook',NULL,'Stony Brook University','stonybrook.edu',1,'stonybrook',NULL,1,'urn:mace:incommon:stonybrook.edu','^(member|alum|faculty|staff|student|employee)@(stonybrook.edu)',NULL,NULL,'2023-12-01 15:48:17'); +INSERT INTO `ht_institutions` VALUES ('swarthmore',NULL,'Swarthmore College','swarthmore.edu',1,'swarthmore',NULL,1,'https://sid.swarthmore.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@swarthmore.edu','https://refeds.org/profile/mfa',NULL,'2023-08-14 15:15:35'); +INSERT INTO `ht_institutions` VALUES ('swmed',NULL,'University of Texas Southwestern Medical Center','swmed.edu',1,'utexas','The University of Texas',1,'https://shib2.swmed.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@utsouthwestern.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('sydney',NULL,'University of Sydney','sydney.edu.au',0,'sydney',NULL,1,'https://federation.sydney.edu.au/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@sydney.edu.au',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('syr',NULL,'Syracuse University','syr.edu',1,'syr',NULL,1,'https://sts.windows.net/4278a402-1a9e-4eb9-8414-ffb55a5fcf1e/','^(member|alum|faculty|staff|student|employee)@syr.edu',NULL,NULL,'2024-05-23 13:33:03'); +INSERT INTO `ht_institutions` VALUES ('tamu',NULL,'Texas A&M University','tamu.edu',1,'tamu',NULL,1,'urn:mace:incommon:tamu.edu','^(member|alum|faculty|staff|student|employee)@tamu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('tamucc',NULL,'Texas A&M University-Corpus Christi','tamucc.edu',1,'tamucc',NULL,1,'https://idp.tamucc.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@(tamucc.edu)',NULL,NULL,'2024-02-27 12:32:03'); +INSERT INTO `ht_institutions` VALUES ('tcu',NULL,'Texas Christian University','tcu.edu',1,'tcu',NULL,1,'https://idp.tcu.edu/idp','^(member|alum|faculty|staff|student|employee)@tcu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('technicalreports',NULL,'Technical Report Archive & Image Library','technicalreports.org',1,'technicalreports',NULL,2,NULL,NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('temple',NULL,'Temple University','temple.edu',1,'temple',NULL,1,'https://fim.temple.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@temple.edu','http://temple.edu/classes/mfa',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('torontomu',NULL,'Toronto Metropolitan University','torontomu.ca',0,'torontomu',NULL,1,'https://idp.torontomu.ca/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@(torontomu.ca)',NULL,NULL,'2023-02-14 14:02:49'); +INSERT INTO `ht_institutions` VALUES ('trentu',NULL,'Trent University','trentu.ca',0,'trentu',NULL,1,'https://shib.trentu.ca/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@(trentu.ca)',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('trincoll',NULL,'Trinity College','trincoll.edu',1,'trincoll',NULL,1,'https://shibboleth.trincoll.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@trincoll.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ttu',NULL,'Texas Tech University','ttu.edu',1,'ttu',NULL,1,'https://idp.shibboleth.ttu.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@ttu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('tufts',NULL,'Tufts University','tufts.edu',1,'tufts',NULL,1,'https://shib-idp.tufts.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@tufts.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('tulane',NULL,'Tulane University','tulane.edu',1,'tulane',NULL,1,'https://idp.tulane.edu/openathens','^(member|alum|faculty|staff|student|employee)@tulane.edu',NULL,NULL,'2024-09-03 13:24:21'); +INSERT INTO `ht_institutions` VALUES ('twitter',NULL,'Twitter','twitter.com',0,'twitter',NULL,0,'https://twitter.cirrusidentity.com/gateway',NULL,NULL,NULL,'2023-05-01 21:07:25'); +INSERT INTO `ht_institutions` VALUES ('txstate',NULL,'Texas State University - San Marcos','txstate.edu',1,'txstate',NULL,1,'https://authentic.txstate.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@txstate.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ua',NULL,'University of Alabama','ua.edu',1,'ua',NULL,1,'https://idp.ua.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@ua.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ualberta',NULL,'University of Alberta','ualberta.ca',0,'ualberta',NULL,1,'https://login.ualberta.ca/saml2/idp/metadata.php','^(member|alum|faculty|staff|student|employee)@ualberta.ca',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('uark',NULL,'University of Arkansas','uark.edu',1,'uark',NULL,1,'https://idp.uark.edu/openathens','^(member|alum|faculty|staff|student|employee)@(uark.edu)',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ubc',NULL,'University of British Columbia','ubc.ca',0,'ubc',NULL,1,'https://authentication.ubc.ca','^(member|alum|faculty|staff|student|employee|affiliate)@ubc.ca','urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ubc-openathens',NULL,'University of British Columbia Library OpenAthens (UBC)','ubc.ca',0,'ubc',NULL,0,'https://idp.ubc.ca/openathens','^(member|alum|faculty|staff|student|employee|affiliate)@ubc.ca',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('uc',NULL,'University of Cincinnati','uc.edu',1,'uc',NULL,1,'https://login.uc.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@uc.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ucalgary',NULL,'University of Calgary','ucalgary.ca',0,'ucalgary',NULL,1,'https://shibboleth.ucalgary.ca/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@ucalgary.ca',NULL,NULL,'2022-04-29 13:07:06'); +INSERT INTO `ht_institutions` VALUES ('ucdavis',NULL,'University of California, Davis','ucdavis.edu',1,'universityofcalifornia',NULL,1,'urn:mace:incommon:ucdavis.edu','^(member|alum|faculty|staff|student|employee)@ucdavis.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ucf',NULL,'University of Central Florida','ucf.edu',1,'flbog','Florida State University System',1,'https://idp.ucf.edu/openathens','^(member|alum|faculty|staff|student|employee)@ucf.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('uchicago','CHI','University of Chicago','uchicago.edu',1,'uchicago',NULL,1,'urn:mace:incommon:uchicago.edu','^(member|alum|faculty|staff|student|employee)@uchicago.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('uci',NULL,'University of California, Irvine','uci.edu',1,'universityofcalifornia',NULL,1,'urn:mace:incommon:uci.edu','^(member|alum|faculty|staff|student|employee)@uci.edu','https://refeds.org/profile/mfa',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ucla',NULL,'University of California, Los Angeles','ucla.edu',1,'universityofcalifornia',NULL,1,'urn:mace:incommon:ucla.edu','^(member|alum|faculty|staff|student|employee)@ucla.edu','urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport',NULL,'2025-01-21 14:03:35'); +INSERT INTO `ht_institutions` VALUES ('ucla-dev',NULL,'University of California, Los Angeles MFA test','ucla.edu',1,'universityofcalifornia',NULL,0,'https://shbqa.ais.ucla.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@ucla.edu','http://id.incommon.org/assurance/mfa',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ucm','UCM','Universidad Complutense de Madrid','ucm.es',0,'ucm',NULL,1,'https://www.rediris.es/sir/ucmidp','^(member|alum|faculty|staff|student|employee)@ucm.es',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ucmerced',NULL,'University of California, Merced','ucmerced.edu',1,'universityofcalifornia',NULL,1,'urn:mace:incommon:ucmerced.edu','^(member|alum|faculty|staff|student|employee)@ucmerced.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('uconn',NULL,'University of Connecticut','uconn.edu',1,'uconn',NULL,1,'https://login.uconn.edu/cas/idp/metadata','^(member|alum|faculty|staff|student|employee)@uconn.edu','https://refeds.org/profile/mfa',NULL,'2023-07-31 13:26:13'); +INSERT INTO `ht_institutions` VALUES ('uconn-cas',NULL,'UConn CAS SSO','uconn.edu',1,'uconn',NULL,0,'https://login.uconn.edu/cas/idp/metadata','^(member|alum|faculty|staff|student|employee)@(uconn.edu)',NULL,NULL,'2023-07-12 17:42:17'); +INSERT INTO `ht_institutions` VALUES ('ucop',NULL,'University of California, Office of the President','ucop.edu',1,'universityofcalifornia',NULL,1,'urn:mace:incommon:ucop.edu','^(member|alum|faculty|staff|student|employee)@ucop.edu','urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ucr',NULL,'University of California, Riverside','ucr.edu',1,'universityofcalifornia',NULL,1,'urn:mace:incommon:ucr.edu','^(member|alum|faculty|staff|student|employee)@ucr.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ucsb',NULL,'University of California, Santa Barbara','ucsb.edu',1,'universityofcalifornia',NULL,1,'urn:mace:incommon:ucsb.edu','^(member|alum|faculty|staff|student|employee)@ucsb.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ucsc',NULL,'University of California, Santa Cruz','ucsc.edu',1,'universityofcalifornia',NULL,1,'urn:mace:incommon:ucsc.edu','^(member|alum|faculty|staff|student|employee)@ucsc.edu','https://refeds.org/profile/mfa',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ucsd',NULL,'University of California, San Diego','ucsd.edu',1,'universityofcalifornia',NULL,1,'https://idp.ucsd.edu/entity','^(member|alum|faculty|staff|student|employee)@ucsd.edu',NULL,NULL,'2025-07-23 21:42:02'); +INSERT INTO `ht_institutions` VALUES ('ucsf',NULL,'University of California, San Francisco','ucsf.edu',1,'universityofcalifornia',NULL,1,'urn:mace:incommon:ucsf.edu','^(member|alum|faculty|staff|student|employee)@ucsf.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('uct',NULL,'University of Cape Town','uct.ac.za',0,'uct',NULL,0,'https://proxy.safire.ac.za/birk.php/srvslsfed001.uct.ac.za/simplesaml/saml2/idp/metadata.php',NULL,NULL,NULL,'2024-10-23 13:13:00'); +INSERT INTO `ht_institutions` VALUES ('udel',NULL,'University of Delaware','udel.edu',1,'udel',NULL,1,'https://idp.nss.udel.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@udel.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ufl','UFL','University of Florida','ufl.edu',1,'flbog','Florida State University System',1,'https://login.ufl.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@ufl.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('uga','UGA','University of Georgia','uga.edu',1,'usg','University System of Georgia',1,'https://sso.cc.uga.edu/cas/idp','^(member|alum|faculty|staff|student|employee)@uga.edu',NULL,NULL,'2022-08-22 13:16:17'); +INSERT INTO `ht_institutions` VALUES ('uga-openathens',NULL,'University of Georgia (via OpenAthens)','uga.edu',1,'usg','University System of Georgia',0,'https://idp.uga.edu/openathens','^(member|alum|faculty|staff|student|employee)@uga.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('uh',NULL,'University of Houston','lib.uh.edu',1,'uh',NULL,1,'https://shibboleth.lib.uh.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@lib.uh.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('uh-new',NULL,'University of Houston','uh.edu',1,'uh-new',NULL,0,'https://fedidp.uh.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@uh.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('uic',NULL,'University of Illinois Chicago','uic.edu',1,'uic',NULL,1,'https://shibboleth.uic.edu/shibboleth','^(member|alum|faculty|staff|student|employee)@uic.edu',NULL,NULL,'2023-06-08 13:35:55'); +INSERT INTO `ht_institutions` VALUES ('uiowa','IOWA','University of Iowa','uiowa.edu',1,'uiowa',NULL,1,'urn:mace:incommon:uiowa.edu','^(member|alum|faculty|staff|student|employee)@uiowa.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('uky',NULL,'University of Kentucky','uky.edu',1,'uky',NULL,1,'https://ukidp.uky.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@uky.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('umanitoba',NULL,'University of Manitoba','umanitoba.ca',0,'umanitoba',NULL,1,'http://CAF.AD.UMANITOBA.CA/adfs/services/trust','^(member|alum|faculty|staff|student|employee)@umanitoba.ca',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('umanitoba-dev',NULL,'University Of Manitoba (Dev)','umanitoba.ca',0,'umanitoba',NULL,0,'http://caf-test.adlab.cctest.umanitoba.ca/adfs/services/trust','^(member|alum|faculty|staff|student|employee)@umanitoba.ca',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('umass',NULL,'University of Massachusetts Amherst','umass.edu',1,'umass',NULL,1,'https://webauth.umass.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@umass.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('umd',NULL,'University of Maryland, College Park','umd.edu',1,'umd',NULL,1,'urn:mace:incommon:umd.edu','^(member|alum|faculty|staff|student|employee)@umd.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('umdl-umich',NULL,'University of Michigan Library IT, Digital Library Production Service, Digital Conversion Unit','umdl.umich.edu',1,'umdl-umich',NULL,2,NULL,NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('umich','UOM','University of Michigan','umich.edu',1,'umich',NULL,1,'https://shibboleth.umich.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@umich.edu','https://refeds.org/profile/mfa',NULL,'2023-05-09 13:25:58'); +INSERT INTO `ht_institutions` VALUES ('umn','MINN','University of Minnesota','umn.edu',1,'umn',NULL,1,'urn:mace:incommon:umn.edu','^(member|alum|faculty|staff|student|employee)@umn.edu','https://www.umn.edu/shibboleth/classes/authncontext/duo',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('umontreal',NULL,'Université de Montréal','umontreal.ca',0,'umontreal',NULL,1,'https://shibboleth.umontreal.ca/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@(umontreal.ca)',NULL,NULL,'2023-01-10 16:35:57'); +INSERT INTO `ht_institutions` VALUES ('umt',NULL,'The University of Montana','umt.edu',1,'umt',NULL,1,'https://login.umt.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@(umt.edu)',NULL,NULL,'2023-02-27 18:40:56'); +INSERT INTO `ht_institutions` VALUES ('unc',NULL,'University of North Carolina at Chapel Hill','unc.edu',1,'unc',NULL,1,'urn:mace:incommon:unc.edu','^(member|alum|faculty|staff|student|employee)@unc.edu','https://unc.edu/profile/mfa',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('unco',NULL,'University of Northern Colorado','unco.edu',1,'unco',NULL,1,'https://sso.unco.edu/idp','^(member|alum|faculty|staff|student|employee)@(unco.edu|bears.unco.edu)',NULL,NULL,'2022-09-29 14:40:06'); +INSERT INTO `ht_institutions` VALUES ('und',NULL,'University of North Dakota','und.edu',1,'und',NULL,1,'https://ndusnam.ndus.edu/nidp/saml2/metadata','^(member|alum|faculty|staff|student|employee)@und.edu',NULL,NULL,'2024-07-12 17:18:42'); +INSERT INTO `ht_institutions` VALUES ('unf',NULL,'University of North Florida','unf.edu',1,'flbog','Florida State University System',1,'https://idp.unf.edu/openathens','^(member|alum|faculty|staff|student|employee)@unf.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('ung',NULL,'University of North Georgia','ung.edu',1,'usg','University System of Georgia',1,'https://idp.ung.edu/openathens','^(member|alum|faculty|staff|student|employee)@ung.edu',NULL,NULL,'2022-08-22 13:06:25'); +INSERT INTO `ht_institutions` VALUES ('uni',NULL,'University of Northern Iowa','uni.edu',1,'uni',NULL,1,'https://shib.uni.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@(uni.edu)',NULL,NULL,'2022-08-05 13:21:19'); +INSERT INTO `ht_institutions` VALUES ('unimelb',NULL,'University of Melbourne','unimelb.edu.au',0,'unimelb',NULL,1,'https://idp.unimelb.edu.au/openathens','^(member|alum|faculty|staff|student|employee)@unimelb.edu.au',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('union',NULL,'Union College','union.edu',1,'union',NULL,1,'https://sso.union.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@union.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('universityofcalifornia','UCAL','University of California','universityofcalifornia.edu',1,'universityofcalifornia',NULL,2,NULL,NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('unl',NULL,'University of Nebraska - Lincoln','unl.edu',1,'unl',NULL,1,'https://shib.unl.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@unl.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('unlv',NULL,'University of Nevada - Las Vegas','unlv.edu',1,'unlv',NULL,1,'https://login.unlv.edu/FIM/sps/MyShib/saml20','^(member|alum|faculty|staff|student|employee)@unlv.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('unm',NULL,'University of New Mexico','unm.edu',1,'unm',NULL,1,'https://sts.windows.net/25aa9830-e0f9-482b-897e-1a3b3c855e5c/','^(member|alum|faculty|staff|student|employee|alumni)@unm.edu',NULL,NULL,'2022-04-07 16:54:14'); +INSERT INTO `ht_institutions` VALUES ('unomaha',NULL,'University of Nebraska at Omaha','unomaha.edu',1,'unomaha',NULL,1,'https://auth.unomaha.edu/idp','^(member|alum|faculty|staff|student|employee)@unomaha.edu','https://refeds.org/profile/mfa',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('unt',NULL,'University of North Texas','unt.edu',1,'unt',NULL,1,'https://sso.unt.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@unt.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('uoguelph',NULL,'University of Guelph','uoguelph.ca',0,'uoguelph',NULL,1,'https://idp.identity.uoguelph.ca/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@uoguelph.ca',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('uoregon',NULL,'University of Oregon','uoregon.edu',1,'uoregon',NULL,1,'https://shibboleth.uoregon.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@uoregon.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('uottawa',NULL,'University of Ottawa','uottawa.ca',0,'uottawa',NULL,1,'https://fca-caf.uottawa.ca/idp','^(member|alum|faculty|staff|student|employee)@uottawa.ca',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('upenn',NULL,'University of Pennsylvania','upenn.edu',1,'upenn',NULL,1,'https://idp.pennkey.upenn.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@upenn.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('uq',NULL,'The University of Queensland','uq.edu.au',0,'uq',NULL,1,'https://auth.uq.edu.au/idp/saml2/idp/metadata.php','^(member|alum|faculty|staff|student|employee)@uq.edu.au',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('uregina',NULL,'University of Regina','uregina.ca',0,'uregina',NULL,1,'https://idp.uregina.ca/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@uregina.ca',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('uri',NULL,'University of Rhode Island','uri.edu',1,'uri',NULL,1,'https://sso.uri.edu/idp','^(member|alum|faculty|staff|student|employee)@(uri.edu)',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('usask',NULL,'University of Saskatchewan','usask.ca',0,'usask',NULL,1,'https://idp.usask.ca/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@usask.ca',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('usc',NULL,'University of Southern California','usc.edu',1,'usc',NULL,1,'urn:mace:incommon:usc.edu','^(affiliate|member|alum|faculty|staff|student|employee)@usc.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('usf',NULL,'University of South Florida','usf.edu',1,'flbog','Florida State University System',1,'https://shib.auth.usf.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@usf.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('usg',NULL,'University System of Georgia','usg.edu',1,'usg',NULL,2,NULL,NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('usnh',NULL,'University System of New Hampshire','usnh.edu',1,'usnh',NULL,1,'https://sso.usnh.edu/idp','^(member|alum|faculty|staff|student|employee)@usnh.edu',NULL,NULL,'2025-03-06 15:19:38'); +INSERT INTO `ht_institutions` VALUES ('usu',NULL,'Utah State University','usu.edu',1,'usu',NULL,1,'https://shibboleth.usu.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@usu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('usupress',NULL,'Utah State University Press','usupress.com',1,'usupress',NULL,2,NULL,NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('uta',NULL,'University of Texas at Arlington','uta.edu',1,'utexas','The University of Texas',1,'https://sts.windows.net/5cdc5b43-d7be-4caa-8173-729e3b0a62d9/','^(member|alum|faculty|staff|student|employee)@uta.edu',NULL,NULL,'2023-08-30 20:51:51'); +INSERT INTO `ht_institutions` VALUES ('utah',NULL,'University of Utah','utah.edu',1,'utah',NULL,1,'urn:mace:incommon:utah.edu','^(member|alum|faculty|staff|student|employee)@utah.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('utdallas',NULL,'University of Texas at Dallas','utdallas.edu',1,'utexas','The University of Texas',1,'https://idp.utdallas.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@utdallas.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('utep',NULL,'University of Texas at El Paso','utep.edu',1,'utexas','The University of Texas',1,'https://shib2.utep.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@utep.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('utexas','UTEXAS','University of Texas at Austin','utexas.edu',1,'utexas','The University of Texas',1,'https://enterprise.login.utexas.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@utexas.edu','https://idm.utsystem.edu/authncontext/twofactorbasic',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('uth',NULL,'University of Texas Health Science Center at Houston','uth.edu',1,'utexas','The University of Texas',1,'https://shib-idp2.uth.tmc.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@uth.tmc.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('utk',NULL,'University of Tennessee, Knoxville','utk.edu',1,'utk',NULL,1,'https://idp.utk.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@utk.edu','https://refeds.org/profile/mfa',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('utmb',NULL,'University of Texas Medical Branch At Galveston','utmb.edu',1,'utexas','The University of Texas',1,'https://idp.utmb.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@utmb.edu',NULL,NULL,'2024-10-23 13:26:55'); +INSERT INTO `ht_institutions` VALUES ('utoronto',NULL,'University of Toronto','utoronto.ca',0,'utoronto',NULL,1,'https://idpz.utorauth.utoronto.ca/shibboleth','^(member|alum|faculty|staff|student|employee|alumni)@utoronto.ca',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('utrgv',NULL,'University of Texas Rio Grande Valley','utrgv.edu',1,'utexas','The University of Texas',1,'https://shibidp.utrgv.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@utrgv.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('utsa',NULL,'University of Texas at San Antonio','utsa.edu',1,'utexas','The University of Texas',1,'https://sso.it.utsa.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@utsa.edu','https://idm.utsystem.edu/authncontext/twofactorbasic',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('utulsa',NULL,'The University Of Tulsa','utulsa.edu',1,'utulsa',NULL,1,'https://sts.windows.net/d4ff013c-62b7-4167-924f-5bd93e8202d3/','^(member|alum|faculty|staff|student|employee)@utulsa.edu',NULL,NULL,'2025-04-23 17:07:18'); +INSERT INTO `ht_institutions` VALUES ('uuhhs',NULL,'Unitarian Universalist History and Heritage Society','uuhhs.org',1,'uuhhs',NULL,2,NULL,NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('uvm',NULL,'University of Vermont','uvm.edu',1,'uvm',NULL,1,'https://idp.uvm.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@uvm.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('uwaterloo',NULL,'University of Waterloo','uwaterloo.ca',0,'uwaterloo',NULL,1,'https://idp.uwaterloo.ca/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@uwaterloo.ca',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('uwf',NULL,'University of West Florida','uwf.edu',1,'flbog','Florida State University System',1,'https://idp.uwf.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@uwf.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('uwo',NULL,'University of Western Ontario','uwo.ca',0,'uwo',NULL,1,'https://shibidp.uwo.ca/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@uwo.ca',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('uwyo',NULL,'University of Wyoming','uwyo.edu',1,'uwyo',NULL,1,'https://shibboleth.uwyo.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@uwyo.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('valdosta',NULL,'Valdosta State University','valdosta.edu',1,'usg',NULL,1,'https://idp.valdosta.edu/openathens','^(member|alum|faculty|staff|student|employee)@valdosta.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('vanderbilt',NULL,'Vanderbilt University','vanderbilt.edu',1,'vanderbilt',NULL,1,'https://sso.vanderbilt.edu/idp','^(member|alum|faculty|staff|student|employee)@vanderbilt.edu',NULL,NULL,'2025-07-08 17:44:05'); +INSERT INTO `ht_institutions` VALUES ('vassar',NULL,'Vassar College','vassar.edu',1,'vassar',NULL,1,'https://shib01.vassar.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@vassar.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('vcccd',NULL,'Ventura County Community College District','vcccd.edu',1,'vcccd',NULL,0,'https://account.vcccd.edu',NULL,NULL,NULL,'2024-10-23 13:14:06'); +INSERT INTO `ht_institutions` VALUES ('vcu',NULL,'Virginia Commonwealth University','vcu.edu',1,'vcu',NULL,1,'https://shibboleth.vcu.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@vcu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('villanova',NULL,'Villanova University','villanova.edu',1,'villanova',NULL,1,'https://sts.windows.net/765a8de5-cf94-44f0-9caf-ae5bf8cfa366/','^(member|alum|faculty|staff|student|employee)@villanova.edu',NULL,NULL,'2024-06-25 17:44:49'); +INSERT INTO `ht_institutions` VALUES ('virginia','UVA','University of Virginia','virginia.edu',1,'virginia',NULL,1,'urn:mace:incommon:virginia.edu','^(member|alum|faculty|staff|student|employee)@virginia.edu','https://refeds.org/profile/mfa',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('vt',NULL,'Virginia Tech','vt.edu',1,'vt',NULL,1,'urn:mace:incommon:vt.edu','^(member|alum|faculty|staff|student|employee)@vt.edu','https://refeds.org/profile/mfa',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('washington',NULL,'University of Washington','washington.edu',1,'washington',NULL,1,'urn:mace:incommon:washington.edu','^(member|alum|faculty|staff|student|employee)@washington.edu','https://refeds.org/profile/mfa',NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('wayne',NULL,'Wayne State University','wayne.edu',1,'wayne',NULL,1,'https://academica.aws.wayne.edu/saml2/trust','^(member|alum|faculty|staff|student|employee)@wayne.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('wellesley',NULL,'Wellesley College','wellesley.edu',1,'wellesley',NULL,1,'https://login.wellesley.edu/saml2/idp/metadata.php','^(member|alum|faculty|staff|student|employee)@wellesley.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('wesleyan',NULL,'Wesleyan University','wesleyan.edu',1,'wesleyan',NULL,1,'https://idp.wesleyan.edu/entity','^(member|alum|faculty|staff|student|employee)@wesleyan.edu',NULL,NULL,'2022-08-22 13:16:17'); +INSERT INTO `ht_institutions` VALUES ('westga',NULL,'University of West Georgia','westga.edu',1,'usg',NULL,1,'https://idp.westga.edu/openathens','^(member|alum|faculty|staff|student|employee)@westga.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('westpoint',NULL,'United States Military Academy at West Point','westpoint.edu',1,'westpoint',NULL,1,'https://idp.westpoint.edu/idp','^(member|alum|faculty|staff|student|employee)@(westpoint.edu)',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('wfu',NULL,'Wake Forest University','wfu.edu',1,'wfu',NULL,1,'https://webauth.wfunet.wfu.edu/saml/saml2/idp/metadata.php','^(member|alum|faculty|staff|student|employee)@wfu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('whitman',NULL,'Whitman College','whitman.edu',1,'whitman',NULL,1,'https://idp.whitman.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@whitman.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('wichita',NULL,'Wichita State University','wichita.edu',1,'wichita',NULL,1,'https://shib.wichita.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@wichita.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('willamette',NULL,'Willamette University','willamette.edu',1,'willamette',NULL,1,'https://idp.willamette.edu/idp','^(member|alum|faculty|staff|student|employee)@willamette.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('williams',NULL,'Williams College','williams.edu',1,'williams',NULL,1,'http://www.okta.com/exkm9qibc655GoHXy697','^(member|alum|faculty|staff|student|employee)@williams.edu',NULL,NULL,'2025-01-09 14:18:52'); +INSERT INTO `ht_institutions` VALUES ('wisc','Wisc','University of Wisconsin - Madison','wisc.edu',1,'wisc',NULL,1,'https://login.wisc.edu/idp/shibboleth','^(affiliate|member|alum|faculty|staff|student|employee)@wisc.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('wlu-ca',NULL,'Wilfrid Laurier University','wlu.ca',0,'wlu-ca',NULL,1,'https://idp.wlu.ca/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@wlu.ca',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('wlu-edu',NULL,'Washington and Lee University','wlu.edu',1,'wlu-edu',NULL,1,'https://idp.wlu.edu/entity','^(member|alum|faculty|staff|student|employee)@wlu.edu',NULL,NULL,'2022-08-22 13:16:17'); +INSERT INTO `ht_institutions` VALUES ('wm',NULL,'William & Mary','wm.edu',1,'wm',NULL,1,'https://idp.wm.edu/entity','^(member|alum|faculty|staff|student|employee)@wm.edu',NULL,NULL,'2024-02-09 17:04:56'); +INSERT INTO `ht_institutions` VALUES ('wooster',NULL,'The College of Wooster','wooster.edu',1,'wooster',NULL,1,'https://idp.wooster.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@wooster.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('wpi',NULL,'Worcester Polytechnic Institute','wpi.edu',1,'wpi',NULL,0,'https://idp.wpi.edu/idp/shibboleth',NULL,NULL,NULL,'2024-10-23 13:25:02'); +INSERT INTO `ht_institutions` VALUES ('wsu',NULL,'Washington State University','wsu.edu',1,'wsu',NULL,1,'https://idp.libraries.wsu.edu/entity','^(member|alum|faculty|staff|student|employee)@(libraries.wsu.edu|80288881.libraries.wsu.edu|80288882.libraries.wsu.edu|80288883.libraries.wsu.edu)',NULL,NULL,'2023-07-06 15:30:56'); +INSERT INTO `ht_institutions` VALUES ('wustl',NULL,'Washington University in St. Louis','wustl.edu',1,'wustl',NULL,1,'https://login.wustl.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@wustl.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('wvu',NULL,'West Virginia University','wvu.edu',1,'wvu',NULL,1,'https://idp.wvu.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@wvu.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('wwu',NULL,'Western Washington University','wwu.edu',1,'wwu',NULL,1,'https://sidp.wwu.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@(wwu.edu)',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('xula',NULL,'Xavier University of Louisiana','xula.edu',1,'xula',NULL,1,'https://idp.xula.edu/openathens','^(member|alum|faculty|staff|student|employee)@xula.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('yahoo',NULL,'Yahoo!','yahoo.com',0,'yahoo',NULL,0,'https://yahoo.cirrusidentity.com/gateway',NULL,NULL,NULL,'2021-02-18 18:05:02'); +INSERT INTO `ht_institutions` VALUES ('yale',NULL,'Yale University','yale.edu',1,'yale',NULL,1,'https://auth.yale.edu/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@yale.edu',NULL,NULL,'2022-03-31 14:04:37'); +INSERT INTO `ht_institutions` VALUES ('yorku',NULL,'York University','yorku.ca',0,'yorku',NULL,1,'https://shib.yorku.ca/idp/shibboleth','^(member|alum|faculty|staff|student|employee)@yorku.ca',NULL,NULL,'2022-03-31 14:04:37'); /*!40000 ALTER TABLE `ht_institutions` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;