PHP 8.2.30
Preview: omp.sql Size: 26.44 MB
/proc/self/root/var/softaculous/omp/omp.sql

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;

--
-- Database: `omp3504`
--


-- --------------------------------------------------------

--
-- Table structure for table `announcements`
--

CREATE TABLE `announcements` (
  `announcement_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `assoc_type` smallint(6) DEFAULT NULL,
  `assoc_id` bigint(20) DEFAULT NULL,
  `type_id` bigint(20) DEFAULT NULL,
  `date_expire` date DEFAULT NULL,
  `date_posted` datetime NOT NULL,
  PRIMARY KEY (`announcement_id`),
  KEY `announcements_type_id` (`type_id`),
  KEY `announcements_assoc` (`assoc_type`,`assoc_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Announcements are messages that can be presented to users e.g. on the homepage.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `announcement_settings`
--

CREATE TABLE `announcement_settings` (
  `announcement_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `announcement_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  PRIMARY KEY (`announcement_setting_id`),
  UNIQUE KEY `announcement_settings_unique` (`announcement_id`,`locale`,`setting_name`),
  KEY `announcement_settings_announcement_id` (`announcement_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about announcements, including localized properties like names and contents.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `announcement_types`
--

CREATE TABLE `announcement_types` (
  `type_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`type_id`),
  KEY `announcement_types_context_id` (`context_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Announcement types allow for announcements to optionally be categorized.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `announcement_type_settings`
--

CREATE TABLE `announcement_type_settings` (
  `announcement_type_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  `setting_type` varchar(6) NOT NULL,
  PRIMARY KEY (`announcement_type_setting_id`),
  UNIQUE KEY `announcement_type_settings_unique` (`type_id`,`locale`,`setting_name`),
  KEY `announcement_type_settings_type_id` (`type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about announcement types, including localized properties like their names.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `authors`
--

CREATE TABLE `authors` (
  `author_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `email` varchar(90) NOT NULL,
  `include_in_browse` smallint(6) NOT NULL DEFAULT '1',
  `publication_id` bigint(20) NOT NULL,
  `seq` double NOT NULL DEFAULT '0',
  `user_group_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`author_id`),
  KEY `authors_user_group_id` (`user_group_id`),
  KEY `authors_publication_id_foreign` (`publication_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='The authors of a publication.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `author_affiliations`
--

CREATE TABLE `author_affiliations` (
  `author_affiliation_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `author_id` bigint(20) NOT NULL,
  `ror` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`author_affiliation_id`),
  KEY `author_affiliations_ror` (`ror`),
  KEY `author_affiliations_author_id_foreign` (`author_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Author affiliations' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `author_affiliation_settings`
--

CREATE TABLE `author_affiliation_settings` (
  `author_affiliation_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `author_affiliation_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  PRIMARY KEY (`author_affiliation_setting_id`),
  UNIQUE KEY `author_affiliation_settings_unique` (`author_affiliation_id`,`locale`,`setting_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about author affiliations' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `author_settings`
--

CREATE TABLE `author_settings` (
  `author_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `author_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  PRIMARY KEY (`author_setting_id`),
  UNIQUE KEY `author_settings_unique` (`author_id`,`locale`,`setting_name`),
  KEY `author_settings_author_id` (`author_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about authors, including localized properties such as their name and affiliation.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `categories`
--

CREATE TABLE `categories` (
  `category_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) NOT NULL,
  `parent_id` bigint(20) DEFAULT NULL,
  `seq` bigint(20) DEFAULT NULL,
  `path` varchar(255) NOT NULL,
  `image` text,
  PRIMARY KEY (`category_id`),
  UNIQUE KEY `category_path` (`context_id`,`path`),
  KEY `category_context_id` (`context_id`),
  KEY `category_context_parent_id` (`context_id`,`parent_id`),
  KEY `category_parent_id` (`parent_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Categories permit the organization of submissions into a heirarchical structure.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `category_settings`
--

CREATE TABLE `category_settings` (
  `category_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `category_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  PRIMARY KEY (`category_setting_id`),
  UNIQUE KEY `category_settings_unique` (`category_id`,`locale`,`setting_name`),
  KEY `category_settings_category_id` (`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about categories, including localized properties such as names.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `citations`
--

CREATE TABLE `citations` (
  `citation_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `publication_id` bigint(20) NOT NULL,
  `raw_citation` text NOT NULL,
  `seq` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`citation_id`),
  UNIQUE KEY `citations_publication_seq` (`publication_id`,`seq`),
  KEY `citations_publication` (`publication_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A citation made by an associated publication.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `citation_settings`
--

CREATE TABLE `citation_settings` (
  `citation_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `citation_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  `setting_type` varchar(6) DEFAULT NULL,
  PRIMARY KEY (`citation_setting_id`),
  UNIQUE KEY `citation_settings_unique` (`citation_id`,`locale`,`setting_name`),
  KEY `citation_settings_citation_id` (`citation_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Additional data about citations, including localized content.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `completed_payments`
--

CREATE TABLE `completed_payments` (
  `completed_payment_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `payment_type` bigint(20) NOT NULL,
  `context_id` bigint(20) NOT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `assoc_id` varchar(16) DEFAULT NULL,
  `amount` decimal(8,2) NOT NULL,
  `currency_code_alpha` varchar(3) DEFAULT NULL,
  `payment_method_plugin_name` varchar(80) DEFAULT NULL,
  PRIMARY KEY (`completed_payment_id`),
  KEY `completed_payments_context_id` (`context_id`),
  KEY `completed_payments_user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A list of completed (fulfilled) payments, with information about the type of payment and the entity it relates to.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `controlled_vocabs`
--

CREATE TABLE `controlled_vocabs` (
  `controlled_vocab_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `symbolic` varchar(64) NOT NULL,
  `assoc_type` bigint(20) NOT NULL DEFAULT '0',
  `assoc_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`controlled_vocab_id`),
  UNIQUE KEY `controlled_vocab_symbolic` (`symbolic`,`assoc_type`,`assoc_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Every word or phrase used in a controlled vocabulary. Controlled vocabularies are used for submission metadata like keywords and subjects, reviewer interests, and wherever a similar dictionary of words or phrases is required. Each entry corresponds to a word or phrase like "cellular reproduction" and a type like "submissionKeyword".' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `controlled_vocab_entries`
--

CREATE TABLE `controlled_vocab_entries` (
  `controlled_vocab_entry_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `controlled_vocab_id` bigint(20) NOT NULL,
  `seq` double DEFAULT NULL,
  PRIMARY KEY (`controlled_vocab_entry_id`),
  KEY `controlled_vocab_entries_controlled_vocab_id` (`controlled_vocab_id`),
  KEY `controlled_vocab_entries_cv_id` (`controlled_vocab_id`,`seq`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='The order that a word or phrase used in a controlled vocabulary should appear. For example, the order of keywords in a publication.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `controlled_vocab_entry_settings`
--

CREATE TABLE `controlled_vocab_entry_settings` (
  `controlled_vocab_entry_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `controlled_vocab_entry_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  PRIMARY KEY (`controlled_vocab_entry_setting_id`),
  UNIQUE KEY `c_v_e_s_pkey` (`controlled_vocab_entry_id`,`locale`,`setting_name`),
  KEY `c_v_e_s_entry_id` (`controlled_vocab_entry_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about a controlled vocabulary entry, including localized properties such as the actual word or phrase.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `data_object_tombstones`
--

CREATE TABLE `data_object_tombstones` (
  `tombstone_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `data_object_id` bigint(20) NOT NULL,
  `date_deleted` datetime NOT NULL,
  `set_spec` varchar(255) NOT NULL,
  `set_name` varchar(255) NOT NULL,
  `oai_identifier` varchar(255) NOT NULL,
  PRIMARY KEY (`tombstone_id`),
  KEY `data_object_tombstones_data_object_id` (`data_object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Entries for published data that has been removed. Usually used in the OAI endpoint.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `data_object_tombstone_oai_set_objects`
--

CREATE TABLE `data_object_tombstone_oai_set_objects` (
  `object_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `tombstone_id` bigint(20) NOT NULL,
  `assoc_type` bigint(20) NOT NULL,
  `assoc_id` bigint(20) NOT NULL,
  PRIMARY KEY (`object_id`),
  KEY `data_object_tombstone_oai_set_objects_tombstone_id` (`tombstone_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Relationships between tombstones and other data that can be collected in OAI sets, e.g. sections.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `data_object_tombstone_settings`
--

CREATE TABLE `data_object_tombstone_settings` (
  `tombstone_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tombstone_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object)',
  PRIMARY KEY (`tombstone_setting_id`),
  UNIQUE KEY `data_object_tombstone_settings_unique` (`tombstone_id`,`locale`,`setting_name`),
  KEY `data_object_tombstone_settings_tombstone_id` (`tombstone_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about data object tombstones, including localized content.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `dois`
--

CREATE TABLE `dois` (
  `doi_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) NOT NULL,
  `doi` varchar(255) NOT NULL,
  `status` smallint(6) NOT NULL DEFAULT '1',
  PRIMARY KEY (`doi_id`),
  KEY `dois_context_id` (`context_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores all DOIs used in the system.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `doi_settings`
--

CREATE TABLE `doi_settings` (
  `doi_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `doi_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  PRIMARY KEY (`doi_setting_id`),
  UNIQUE KEY `doi_settings_unique` (`doi_id`,`locale`,`setting_name`),
  KEY `doi_settings_doi_id` (`doi_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about DOIs, including the registration agency.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `edit_decisions`
--

CREATE TABLE `edit_decisions` (
  `edit_decision_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `review_round_id` bigint(20) DEFAULT NULL,
  `stage_id` bigint(20) DEFAULT NULL,
  `round` smallint(6) DEFAULT NULL,
  `editor_id` bigint(20) NOT NULL,
  `decision` smallint(6) NOT NULL COMMENT 'A numeric constant indicating the decision that was taken. Possible values are listed in the Decision class.',
  `date_decided` datetime NOT NULL,
  PRIMARY KEY (`edit_decision_id`),
  KEY `edit_decisions_submission_id` (`submission_id`),
  KEY `edit_decisions_editor_id` (`editor_id`),
  KEY `edit_decisions_review_round_id` (`review_round_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Editorial decisions recorded on a submission, such as decisions to accept or decline the submission, as well as decisions to send for review, send to copyediting, request revisions, and more.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `email_log`
--

CREATE TABLE `email_log` (
  `log_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `assoc_type` bigint(20) NOT NULL,
  `assoc_id` bigint(20) NOT NULL,
  `sender_id` bigint(20) DEFAULT NULL,
  `date_sent` datetime NOT NULL,
  `event_type` bigint(20) DEFAULT NULL,
  `from_address` varchar(255) DEFAULT NULL,
  `recipients` text,
  `cc_recipients` text,
  `bcc_recipients` text,
  `subject` varchar(255) DEFAULT NULL,
  `body` text,
  PRIMARY KEY (`log_id`),
  KEY `email_log_sender_id` (`sender_id`),
  KEY `email_log_assoc` (`assoc_type`,`assoc_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A record of email messages that are sent in relation to an associated entity, such as a submission.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `email_log_users`
--

CREATE TABLE `email_log_users` (
  `email_log_user_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `email_log_id` bigint(20) NOT NULL,
  `user_id` bigint(20) NOT NULL,
  PRIMARY KEY (`email_log_user_id`),
  UNIQUE KEY `email_log_user_id` (`email_log_id`,`user_id`),
  KEY `email_log_users_email_log_id` (`email_log_id`),
  KEY `email_log_users_user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A record of users associated with an email log entry.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `email_templates`
--

CREATE TABLE `email_templates` (
  `email_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `email_key` varchar(255) NOT NULL COMMENT 'Unique identifier for this email.',
  `context_id` bigint(20) NOT NULL,
  `alternate_to` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`email_id`),
  UNIQUE KEY `email_templates_email_key` (`email_key`,`context_id`),
  KEY `email_templates_context_id` (`context_id`),
  KEY `email_templates_alternate_to` (`alternate_to`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Custom email templates created by each context, and overrides of the default templates.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `email_templates_default_data`
--

CREATE TABLE `email_templates_default_data` (
  `email_templates_default_data_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `email_key` varchar(255) NOT NULL COMMENT 'Unique identifier for this email.',
  `locale` varchar(28) NOT NULL DEFAULT 'en',
  `name` varchar(255) NOT NULL,
  `subject` varchar(255) NOT NULL,
  `body` text,
  PRIMARY KEY (`email_templates_default_data_id`),
  UNIQUE KEY `email_templates_default_data_unique` (`email_key`,`locale`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COMMENT='Default email templates created for every installed locale.' AUTO_INCREMENT=67 ;

--
-- Dumping data for table `email_templates_default_data`
--

INSERT INTO `email_templates_default_data` VALUES
(1, 'PASSWORD_RESET_CONFIRM', 'en', 'Password Reset Confirm', 'Password Reset Confirmation', 'We have received a request to reset your password for the {$siteTitle} web site.<br />\n<br />\nIf you did not make this request, please ignore this email and your password will not be changed. If you wish to reset your password, click on the below URL.<br />\n<br />\nReset my password: {$passwordResetUrl}<br />\n<br />\n{$siteContactName}'),
(2, 'USER_REGISTER', 'en', 'User Created', 'Press Registration', '{$recipientName}<br />\n<br />\nYou have now been registered as a user with {$contextName}. We have included your username and password in this email, which are needed for all work with this press through its website. At any point, you can ask to be removed from the list of users by contacting me.<br />\n<br />\nUsername: {$recipientUsername}<br />\nPassword: {$password}<br />\n<br />\nThank you,<br />\n{$signature}'),
(3, 'USER_VALIDATE_CONTEXT', 'en', 'Validate Email (Press Registration)', 'Validate Your Account', '{$recipientName}<br />\n<br />\nYou have created an account with {$contextName}, but before you can start using it, you need to validate your email account. To do this, simply follow the link below:<br />\n<br />\n{$activateUrl}<br />\n<br />\nThank you,<br />\n{$contextSignature}'),
(4, 'USER_VALIDATE_SITE', 'en', 'Validate Email (Site)', 'Validate Your Account', '{$recipientName}<br />\n<br />\nYou have created an account with {$siteTitle}, but before you can start using it, you need to validate your email account. To do this, simply follow the link below:<br />\n<br />\n{$activateUrl}<br />\n<br />\nThank you,<br />\n{$siteSignature}'),
(5, 'REVIEWER_REGISTER', 'en', 'Reviewer Register', 'Registration as Reviewer with {$contextName}', 'In light of your expertise, we have taken the liberty of registering your name in the reviewer database for {$contextName}. This does not entail any form of commitment on your part, but simply enables us to approach you with a submission to possibly review. On being invited to review, you will have an opportunity to see the title and abstract of the paper in question, and you''ll always be in a position to accept or decline the invitation. You can also ask at any point to have your name removed from this reviewer list.<br />\n<br />\nWe are providing you with a username and password, which is used in all interactions with the press through its website. You may wish, for example, to update your profile, including your reviewing interests.<br />\n<br />\nUsername: {$recipientUsername}<br />\nPassword: {$password}<br />\n<br />\nThank you,<br />\n{$signature}'),
(6, 'SUBMISSION_ACK', 'en', 'Submission Confirmation', 'Thank you for your submission to {$contextName}', '<p>Dear {$recipientName},</p><p>Thank you for your submission to {$contextName}. We have received your submission, "{$submissionTitle}", and a member of our editorial team will see it soon. You will be sent an email when an initial decision is made, and we may contact you for further information.</p><p>You can view your submission and track its progress through the editorial process at the following location:</p><p>Submission URL: {$authorSubmissionUrl}</p><p>If you have been logged out, you can login again with the username {$recipientUsername}.</p><p>If you have any questions, please contact me from your <a href="{$authorSubmissionUrl}">submission dashboard</a>.</p><p>Thank you for considering {$contextName} as a venue for your work.</p>{$contextSignature}'),
(7, 'SUBMISSION_ACK_NOT_USER', 'en', 'Submission Confirmation (Other Authors)', 'Submission confirmation', '<p>Dear {$recipientName},</p><p>You have been named as a co-author on a submission to {$contextName}. The submitter, {$submitterName}, provided the following details:</p><p>"{$submissionTitle}"<br>{$authorsWithAffiliation}</p><p>If any of these details are incorrect, or you do not wish to be named on this submission, please contact me.</p><p>Thank you for considering {$contextName} as a venue for your work.</p><p>Kind regards,</p>{$contextSignature}'),
(8, 'EDITOR_ASSIGN', 'en', 'Editor Assigned', 'You have been assigned as an editor on a submission to {$contextName}', '<p>Dear {$recipientName},</p><p>The following submission has been assigned to you to see through the editorial process.</p><p><a href="{$submissionUrl}">{$submissionTitle}</a><br />{$authors}</p><p><b>Abstract</b></p>{$submissionAbstract}<p>If you find the submission to be relevant for {$contextName}, please forward the submission to the review stage by selecting "Send to Internal Review" and then assign reviewers by clicking "Add Reviewer".</p><p>If the submission is not appropriate for this press, please decline the submission.</p><p>Thank you in advance.</p><p>Kind regards,</p>{$contextSignature}'),
(9, 'REVIEW_CANCEL', 'en', 'Reviewer Unassign', 'Request for Review Cancelled', '{$recipientName}:<br />\n<br />\nWe have decided at this point to cancel our request for you to review the submission, &quot;{$submissionTitle},&quot; for {$contextName}. We apologize for any inconvenience this may cause you and hope that we will be able to call on you to assist with this review process in the future.<br />\n<br />\nIf you have any questions, please contact me.'),
(10, 'REVIEW_REINSTATE', 'en', 'Reviewer Reinstate', 'Can you still review something for {$contextName}?', '<p>Dear {$recipientName},</p><p>We recently cancelled our request for you to review a submission, {$submissionTitle}, for {$contextName}. We''ve reversed that decision and we hope that you are still able to conduct the review.</p><p>If you are able to assist with this submission''s review, you can <a href="{$reviewAssignmentUrl}">login to the press</a> to view the submission, upload review files, and submit your review request.</p><p>If you have any questions, please contact me.</p><p>Kind regards,</p>{$signature}'),
(11, 'REVIEW_RESEND_REQUEST', 'en', 'Resend Review Request to Reviewer', 'Requesting your review again for {$contextName}', '<p>Dear {$recipientName},</p><p>Recently, you declined our request to review a submission, "{$submissionTitle}", for {$contextName}. I''m writing to see if you are able to conduct the review after all.</p><p>We would be grateful if you''re able to perform this review, but we understand if that is not possible at this time. Either way, please <a href="{$reviewAssignmentUrl}">accept or decline the request</a> by {$responseDueDate}, so that we can find an alternate reviewer.</p><p>If you have any questions, please contact me.</p><p>Kind regards,</p>{$signature}'),
(12, 'REVIEW_REQUEST', 'en', 'Review Request', 'Manuscript Review Request', '<p>Dear {$recipientName},</p><p>I believe that you would serve as an excellent reviewer for a submission  to {$contextName}. The submission''s title and abstract are below, and I hope that you will consider undertaking this important task for us.</p><p>If you are able to review this submission, your review is due by {$reviewDueDate}. You can view the submission, upload review files, and submit your review by logging into the press and following the steps at the link below.</p><p><a href="{$reviewAssignmentUrl}">{$submissionTitle}</a></p><p><b>Abstract</b></p>{$submissionAbstract}<p>Please <a href="{$reviewAssignmentUrl}">accept or decline</a> the review by <b>{$responseDueDate}</b>.</p><p>You may contact me with any questions about the submission or the review process.</p><p>Thank you for considering this request. Your help is much appreciated.</p><p>Kind regards,</p>{$signature}'),
(13, 'REVIEW_REQUEST_SUBSEQUENT', 'en', 'Review Request Subsequent', 'Request to review a revised submission', '<p>Dear {$recipientName},</p><p>Thank you for your review of <a href="{$reviewAssignmentUrl}">{$submissionTitle}</a>. The authors have considered the reviewers'' feedback and have now submitted a revised version of their work. I''m writing to ask if you would conduct a second round of peer review for this submission.</p><p>If you are able to review this submission, your review is due by {$reviewDueDate}. You can <a href="{$reviewAssignmentUrl}">follow the review steps</a> to view the submission, upload review files, and submit your review comments.<p><p><a href="{$reviewAssignmentUrl}">{$submissionTitle}</a></p><p><b>Abstract</b></p>{$submissionAbstract}<p>Please <a href="{$reviewAssignmentUrl}">accept or decline</a> the review by <b>{$responseDueDate}</b>.</p><p>Please feel free to contact me with any questions about the submission or the review process.</p><p>Thank you for considering this request. Your help is much appreciated.</p><p>Kind regards,</p>{$signature}'),
(14, 'REVIEW_RESPONSE_OVERDUE_AUTO', 'en', 'Review Response Overdue (Automated)', 'Manuscript Review Request', 'Dear {$recipientName},<br />\nJust a gentle reminder of our request for your review of the submission, &quot;{$submissionTitle},&quot; for {$contextName}. We were hoping to have your response by {$responseDueDate}, and this email has been automatically generated and sent with the passing of that date.\n<br />\n{$messageToReviewer}<br />\n<br />\nPlease log into the press web site to indicate whether you will undertake the review or not, as well as to access the submission and to record your review and recommendation.<br />\n<br />\nThe review itself is due {$reviewDueDate}.<br />\n<br />\nSubmission URL: {$reviewAssignmentUrl}<br />\n<br />\nUsername: {$recipientUsername}<br />\n<br />\nThank you for considering this request.<br />\n<br />\n<br />\nSincerely,<br />\n{$contextSignature}<br />\n'),
(15, 'REVIEW_CONFIRM', 'en', 'Review Confirm', 'Review accepted: {$reviewerName} accepted review assignment for #{$submissionId} {$authorsShort} — "{$submissionTitle}"', '<p>Dear {$recipientName},</p><p>{$reviewerName} has accepted the following review:</p><p><a href="{$submissionUrl}">#{$submissionId} {$authorsShort} — "{$submissionTitle}"</a><br /><b>Type:</b> {$reviewMethod}</p><p><b>Review Due:</b> {$reviewDueDate}</p><p>Login to <a href="{$submissionUrl}">view all reviewer assignments</a> for this submission.</p><br><br>—<br>This is an automated message from <a href="{$contextUrl}">{$contextName}</a>.'),
(16, 'REVIEW_DECLINE', 'en', 'Review Decline', 'Unable to Review', 'Editor(s):<br />\n<br />\nI am afraid that at this time I am unable to review the submission, &quot;{$submissionTitle},&quot; for {$contextName}. Thank you for thinking of me, and another time feel free to call on me.<br />\n<br />\n{$senderName}'),
(17, 'REVIEW_ACK', 'en', 'Review Acknowledgement', 'Thank you for your review', '<p>Dear {$recipientName},</p>\n<p>Thank you for completing your review of the submission, "{$submissionTitle}", for {$contextName}. We appreciate your time and expertise in contributing to the quality of the work that we publish.</p>\n<p>It has been a pleasure to work with you as a reviewer for {$contextName}, and we hope to have the opportunity to work with you again in the future.</p>\n<p>Kind regards,</p>\n<p>{$signature}</p>'),
(18, 'REVIEW_REMIND', 'en', 'Review Reminder', 'A reminder to please complete your review', '<p>Dear {$recipientName},</p><p>Just a gentle reminder of our request for your review of the submission, "{$submissionTitle}," for {$contextName}. We were expecting to have this review by {$reviewDueDate} and we would be pleased to receive it as soon as you are able to prepare it.</p><p>You can <a href="{$reviewAssignmentUrl}">login to the press</a> and follow the review steps to view the submission, upload review files, and submit your review comments.</p><p>If you need an extension of the deadline, please contact me. I look forward to hearing from you.</p><p>Thank you in advance and kind regards,</p>{$signature}'),
(19, 'REVIEW_REMIND_AUTO', 'en', 'Review Reminder (Automated)', 'A reminder to please complete your review', '<p>Dear {$recipientName}:</p><p>This email is an automated reminder from {$contextName} in regards to our request for your review of the submission, "{$submissionTitle}."</p><p>We were expecting to have this review by {$reviewDueDate} and we would be pleased to receive it as soon as you are able to prepare it.</p><p>Please <a href="{$reviewAssignmentUrl}">login to the press</a> and follow the review steps to view the submission, upload review files, and submit your review comments.</p><p>If you need an extension of the deadline, please contact me. I look forward to hearing from you.</p><p>Thank you in advance and kind regards,</p>{$contextSignature}'),
(20, 'REVIEW_COMPLETE', 'en', 'Review Completed', 'Review complete: {$reviewerName} recommends {$reviewRecommendation} for #{$submissionId} {$authorsShort} — "{$submissionTitle}"', '<p>Dear {$recipientName},</p><p>{$reviewerName} completed the following review:</p><p><a href="{$submissionUrl}">#{$submissionId} {$authorsShort} — "{$submissionTitle}"</a><br /><b>Recommendation:</b> {$reviewRecommendation}<br /><b>Type:</b> {$reviewMethod}</p><p>Login to <a href="{$submissionUrl}">view all files and comments</a> provided by this reviewer.</p>'),
(21, 'REVIEW_EDIT', 'en', 'Review Edited', 'Your review assignment has been changed for {$contextName}', '<p>Dear {$recipientName},</p><p>An editor has made changes to your review assignment for {$contextName}. Please review the details below and let us know if you have any questions.</p><p><a href="{$reviewAssignmentUrl}">"{$submissionTitle}"</a><br /><b>Type:</b> {$reviewMethod}<br /><b>Accept or Decline By:</b> {$responseDueDate}<br /><b>Submit Review By:</b> {$reviewDueDate}</p><p>You can login to <a href="{$reviewAssignmentUrl}">complete this review</a> at any time.</p>'),
(22, 'EDITOR_DECISION_ACCEPT', 'en', 'Submission Accepted', 'Your submission has been accepted to {$contextName}', '<p>Dear {$recipientName},</p><p>I am pleased to inform you that we have decided to accept your submission without further revision. After careful review, we found your submission, {$submissionTitle}, to meet or exceed our expectations. We are excited to publish your piece in {$contextName} and we thank you for choosing our press as a venue for your work.</p><p>Your submission will soon be published on the press site for {$contextName} and you are welcome to include it in your list of publications. We recognize the hard work that goes into every successful submission and we want to congratulate you on reaching this stage.</p><p>Your submission will now undergo copy editing and formatting to prepare it for publication.</p><p>You will shortly receive further instructions.</p><p>If you have any questions, please contact me from your <a href="{$authorSubmissionUrl}">submission dashboard</a>.</p><p>Kind regards,</p>{$signature}'),
(23, 'EDITOR_DECISION_SEND_TO_INTERNAL', 'en', 'Sent to Internal Review', 'Your submission has been sent for internal review', '<p>Dear {$recipientName},</p><p>I am pleased to inform you that an editor has reviewed your submission, {$submissionTitle}, and has decided to send it for internal review. You will hear from us with feedback from the reviewers and information about the next steps.</p><p>Please note that sending the submission for internal review does not guarantee that it will be published. We will consider the reviewers'' recommendations before deciding to accept the submission for publication. You may be asked to make revisions and respond to the reviewers'' comments before a final decision is made.</p><p>If you have any questions, please contact me from your submission dashboard.</p><p>{$signature}</p>'),
(24, 'EDITOR_DECISION_SEND_TO_EXTERNAL', 'en', 'Sent to Review', 'Your submission has been sent for review', '<p>Dear {$recipientName},</p><p>I am pleased to inform you that an editor has reviewed your submission, "{$submissionTitle}", and has decided to send it for peer review. An editor will identify qualified reviewers who will provide feedback on your submission.</p><p>{$reviewTypeDescription} You will hear from us with feedback from the reviewers and information about the next steps.</p><p>Please note that sending the submission to peer review does not guarantee that it will be published. We will consider the reviewers'' recommendations before deciding to accept the submission for publication. You may be asked to make revisions and respond to the reviewers'' comments before a final decision is made.</p><p>If you have any questions, please contact me from your submission dashboard.</p><p>{$signature}</p>'),
(25, 'EDITOR_DECISION_SEND_TO_PRODUCTION', 'en', 'Sent to Production', 'Next steps for publishing your submission', '<p>Dear {$recipientName},</p><p>I am writing from {$contextName} to let you know that the editing of your submission, "{$submissionTitle}", is complete. Your submission will now advance to the production stage, where the final galleys will be prepared for publication. We will contact you if we need any further assistance.</p><p>If you have any questions, please contact me from your <a href="{$authorSubmissionUrl}">submission dashboard</a>.</p><p>Kind regards,</p>{$signature}'),
(26, 'EDITOR_DECISION_REVISIONS', 'en', 'Revisions Requested', 'Your submission has been reviewed and we encourage you to submit revisions', '<p>Dear {$recipientName},</p><p>Your submission "{$submissionTitle}" has been reviewed and we would like to encourage you to submit revisions that address the reviewers'' comments. An editor will review these revisions and if they address the concerns adequately, your submission may be accepted for publication.</p><p>The reviewers'' comments are included at the bottom of this email. Please respond to each point in the reviewers'' comments and identify what changes you have made. If you find any of the reviewer''s comments to be unjustified or inappropriate, please explain your perspective.</p><p>When you have completed your revisions, you can upload revised documents along with your response to the reviewers'' comments at your <a href="{$authorSubmissionUrl}">submission dashboard</a>. If you have been logged out, you can login again with the username {$recipientUsername}.</p><p>If you have any questions, please contact me from your <a href="{$authorSubmissionUrl}">submission dashboard</a>.</p><p>We look forward to receiving your revised submission.</p><p>Kind regards,</p>{$signature}<hr><p>The following comments were received from reviewers.</p>{$allReviewerComments}'),
(27, 'EDITOR_DECISION_RESUBMIT', 'en', 'Resubmit for Review', 'Your submission has been reviewed - please revise and resubmit', '<p>Dear {$recipientName},</p><p>After reviewing your submission, "{$submissionTitle}", the reviewers have recommended that your submission cannot be accepted for publication in its current form. However, we would like to encourage you to submit a revised version that addresses the reviewers'' comments. Your revisions will be reviewed by an editor and may be sent out for another round of peer review.</p><p>Please note that resubmitting your work does not guarantee that it will be accepted.</p><p>The reviewers'' comments are included at the bottom of this email. Please respond to each point and identify what changes you have made. If you find any of the reviewer''s comments inappropriate, please explain your perspective. If you have questions about the recommendations in your review, please include these in your response.</p><p>When you have completed your revisions, you can upload revised documents along with your response to the reviewers'' comments <a href="{$authorSubmissionUrl}">at your submission dashboard</a>. If you have been logged out, you can login again with the username {$recipientUsername}.</p><p>If you have any questions, please contact me from your <a href="{$authorSubmissionUrl}">submission dashboard</a>.</p><p>We look forward to receiving your revised submission.</p><p>Kind regards,</p>{$signature}<hr><p>The following comments were received from reviewers.</p>{$allReviewerComments}'),
(28, 'EDITOR_DECISION_DECLINE', 'en', 'Submission Declined', 'Your submission has been declined', '<p>Dear {$recipientName},</p><p>While we appreciate receiving your submission, we are unable to accept "{$submissionTitle}" for publication on the basis of the comments from reviewers.</p><p>The reviewers'' comments are included at the bottom of this email.</p><p>Thank you for submitting to {$contextName}. Although it is disappointing to have a submission declined, I hope you find the reviewers'' comments to be constructive and helpful.</p><p>You are now free to submit the work elsewhere if you choose to do so.</p><p>Kind regards,</p>{$signature}<hr><p>The following comments were received from reviewers.</p>{$allReviewerComments}'),
(29, 'EDITOR_DECISION_INITIAL_DECLINE', 'en', 'Submission Declined (Pre-Review)', 'Your submission has been declined', '<p>Dear {$recipientName},</p><p>I’m sorry to inform you that, after reviewing your submission, "{$submissionTitle}", the editor has found that it does not meet our requirements for publication in {$contextName}.</p><p>I wish you success if you consider submitting your work elsewhere.</p><p>Kind regards,</p>{$signature}'),
(30, 'EDITOR_RECOMMENDATION', 'en', 'Recommendation Made', 'Editor Recommendation', '<p>Dear {$recipientName},</p><p>After considering the reviewers'' feedback, I would like to make the following recommendation regarding the submission "{$submissionTitle}".</p><p>My recommendation is: {$recommendation}.</p><p>Please visit the submission''s <a href="{$submissionUrl}">editorial workflow</a> to act on this recommendation.</p><p>Please feel free to contact me with any questions.</p><p>Kind regards,</p><p>{$senderName}</p>'),
(31, 'EDITOR_DECISION_NOTIFY_OTHER_AUTHORS', 'en', 'Notify Other Authors', 'An update regarding your submission', '<p>The following email was sent to {$submittingAuthorName} from {$contextName} regarding "{$submissionTitle}".</p>\n<p>You are receiving a copy of this notification because you are identified as an author of the submission. Any instructions in the message below are intended for the submitting author, {$submittingAuthorName}, and no action is required of you at this time.</p>\n\n{$messageToSubmittingAuthor}'),
(32, 'EDITOR_DECISION_NOTIFY_REVIEWERS', 'en', 'Notify Reviewers of Decision', 'Thank you for your review', '<p>Dear {$recipientName},</p>\n<p>Thank you for completing your review of the submission, "{$submissionTitle}", for {$contextName}. We appreciate your time and expertise in contributing to the quality of the work that we publish. We have shared your comments with the authors, along with our other reviewers'' comments and the editor''s decision.</p>\n<p>Based on the feedback we received, we have notified the authors of the following:</p>\n<p>{$decisionDescription}</p>\n<p>Your recommendation was considered alongside the recommendations of other reviewers before coming to a decision. Occasionally the editor''s decision may differ from the recommendation made by one or more reviewers. The editor considers many factors, and does not take these decisions lightly. We are grateful for our reviewers'' expertise and suggestions.</p>\n<p>It has been a pleasure to work with you as a reviewer for {$contextName}, and we hope to have the opportunity to work with you again in the future.</p>\n<p>Kind regards,</p>\n<p>{$signature}</p>'),
(33, 'EDITOR_DECISION_NEW_ROUND', 'en', 'New Review Round Initiated', 'Your submission has been sent for another round of review', '<p>Dear {$recipientName},</p>\n<p>Your revised submission, "{$submissionTitle}", has been sent for a new round of peer review. \nYou will hear from us with feedback from the reviewers and information about the next steps.</p>\n<p>If you have any questions, please contact me from your <a href="{$authorSubmissionUrl}">submission dashboard</a>.</p>\n<p>Kind regards,</p>\n<p>{$signature}</p>\n'),
(34, 'EDITOR_DECISION_REVERT_DECLINE', 'en', 'Reinstate Declined Submission', 'We have reversed the decision to decline your submission', '<p>Dear {$recipientName},</p>\n<p>The decision to decline your submission, "{$submissionTitle}", has been reversed. \nAn editor will complete the round of review and you will be notified when a \ndecision is made.</p>\n<p>Occasionally, a decision to decline a submission will be recorded accidentally in \nour system and must be reverted. I apologize for any confusion this may have caused.</p>\n<p>We will contact you if we need any further assistance.</p>\n<p>If you have any questions, please contact me from your <a href="{$authorSubmissionUrl}">submission dashboard</a>.</p>\n<p>Kind regards,</p>\n<p>{$signature}</p>\n'),
(35, 'EDITOR_DECISION_REVERT_INITIAL_DECLINE', 'en', 'Reinstate Submission Declined Without Review', 'We have reversed the decision to decline your submission', '<p>Dear {$recipientName},</p>\n<p>The decision to decline your submission, "{$submissionTitle}", has been reversed. \nAn editor will look further at your submission before deciding whether to decline \nthe submission or send it for review.</p>\n<p>Occasionally, a decision to decline a submission will be recorded accidentally in \nour system and must be reverted. I apologize for any confusion this may have caused.</p>\n<p>We will contact you if we need any further assistance.</p>\n<p>If you have any questions, please contact me from your <a href="{$authorSubmissionUrl}">submission dashboard</a>.</p>\n<p>Kind regards,</p>\n<p>{$signature}</p>\n'),
(36, 'EDITOR_DECISION_SKIP_REVIEW', 'en', 'Submission Accepted (Without Review)', 'Your submission has been sent for copyediting', '<p>Dear {$recipientName},</p>\n<p>I am pleased to inform you that we have decided to accept your submission without peer review. We found your submission, {$submissionTitle}, to meet our expectations, and we do not require that work of this type undergo peer review. We are excited to publish your piece in {$contextName} and we thank you for choosing our press as a venue for your work.</p>\n<p>Your submission will soon be published on the press site for {$contextName} and you are welcome to include it in your list of publications. We recognize the hard work that goes into every successful submission and we want to congratulate you on your efforts.</p>\n<p>Your submission will now undergo copy editing and formatting to prepare it for publication. </p>\n<p>You will shortly receive further instructions.</p>\n<p>If you have any questions, please contact me from your <a href="{$authorSubmissionUrl}">submission dashboard</a>.</p>\n<p>Kind regards,</p>\n<p>{$signature}</p>\n'),
(37, 'EDITOR_DECISION_BACK_FROM_PRODUCTION', 'en', 'Submission Sent Back to Copyediting', 'Your submission has been sent back to copyediting', '<p>Dear {$recipientName},</p><p>Your submission, "{$submissionTitle}", has been sent back to the copyediting stage, where it will undergo further copyediting and formatting to prepare it for publication.</p><p>Occasionally, a submission is sent to the production stage before it is ready for the final galleys to be prepared for publication. Your submission is still forthcoming. I apologize for any confusion.</p><p>If you have any questions, please contact me from your <a href="{$authorSubmissionUrl}">submission dashboard</a>.</p><p>We will contact you if we need any further assistance.</p><p>Kind regards,</p><p>{$signature}</p>'),
(38, 'EDITOR_DECISION_BACK_FROM_COPYEDITING', 'en', 'Submission Sent Back from Copyediting', 'Your submission has been sent back to review', '<p>Dear {$recipientName},</p><p>Your submission, "{$submissionTitle}", has been sent back to the review stage. It will undergo further review before it can be accepted for publication.</p><p>Occasionally, a decision to accept a submission will be recorded accidentally in our system and we must send it back to review. I apologize for any confusion this has caused. We will work to complete any further review quickly so that you have a final decision as soon as possible.</p><p>We will contact you if we need any further assistance.</p><p>If you have any questions, please contact me from your <a href="{$authorSubmissionUrl}">submission dashboard</a>.</p><p>Kind regards,</p><p>{$signature}</p>'),
(39, 'EDITOR_DECISION_CANCEL_REVIEW_ROUND', 'en', 'Review Round Cancelled', 'A review round for your submission has been cancelled', '<p>Dear {$recipientName},</p><p>We recently opened a new review round for your submission, "{$submissionTitle}". We are closing this review round now.</p><p>Occasionally, a decision to open a round of review will be recorded accidentally in our system and we must cancel this review round. I apologize for any confusion this may have caused.</p><p>We will contact you if we need any further assistance.</p><p>If you have any questions, please contact me from your <a href="{$authorSubmissionUrl}">submission dashboard</a>.</p><p>Kind regards,</p><p>{$signature}</p>'),
(40, 'REVISED_VERSION_NOTIFY', 'en', 'Revised Version Notification', 'Revised Version Uploaded', '<p>Dear {$recipientName},</p><p>The author has uploaded revisions for the submission, <b>{$authorsShort} — {$submissionTitle}</b>. <p>As an assigned editor, we ask that you login and <a href="{$submissionUrl}">view the revisions</a> and make a decision to accept, decline or send the submission for further review.</p><br><br>—<br>This is an automated message from <a href="{$contextUrl}">{$contextName}</a>.'),
(41, 'STATISTICS_REPORT_NOTIFICATION', 'en', 'Statistics Report Notification', 'Editorial activity for {$month}, {$year}', '\n{$recipientName}, <br />\n<br />\nYour press health report for {$month}, {$year} is now available. Your key stats for this month are below.<br />\n<ul>\n	<li>New submissions this month: {$newSubmissions}</li>\n	<li>Declined submissions this month: {$declinedSubmissions}</li>\n	<li>Accepted submissions this month: {$acceptedSubmissions}</li>\n	<li>Total submissions in the system: {$totalSubmissions}</li>\n</ul>\nLogin to the the press to view more detailed <a href="{$editorialStatsLink}">editorial trends</a> and <a href="{$publicationStatsLink}">published book stats</a>. A full copy of this month''s editorial trends is attached.<br />\n<br />\nSincerely,<br />\n{$contextSignature}'),
(42, 'ANNOUNCEMENT', 'en', 'New Announcement', '{$announcementTitle}', '<b>{$announcementTitle}</b><br />\n<br />\n{$announcementSummary}<br />\n<br />\nVisit our website to read the <a href="{$announcementUrl}">full announcement</a>.'),
(43, 'DISCUSSION_NOTIFICATION_SUBMISSION', 'en', 'Discussion (Submission)', 'A message regarding {$contextName}', 'Please enter your message.'),
(44, 'DISCUSSION_NOTIFICATION_REVIEW', 'en', 'Discussion (Review)', 'A message regarding {$contextName}', 'Please enter your message.'),
(45, 'DISCUSSION_NOTIFICATION_COPYEDITING', 'en', 'Discussion (Copyediting)', 'A message regarding {$contextName}', 'Please enter your message.'),
(46, 'DISCUSSION_NOTIFICATION_PRODUCTION', 'en', 'Discussion (Production)', 'A message regarding {$contextName}', 'Please enter your message.'),
(47, 'COPYEDIT_REQUEST', 'en', 'Request Copyedit', 'Submission {$submissionId} is ready to be copyedited for {$contextAcronym}', '<p>Dear {$recipientName},</p><p>A new submission is ready to be copyedited:</p><p><a href"{$submissionUrl}">{$submissionId} — "{$submissionTitle}"</a><br />{$contextName}</p><p>Please follow these steps to complete this task:</p><ol><li>Click on the Submission URL below.</li><li>Open any files available under Draft Files and edit the files. Use the Copyediting Discussions area if you need to contact the editor(s) or author(s).</li><li>Save the copyedited file(s) and upload them to the Copyedited panel.</li><li>Use the Copyediting Discussions to notify the editor(s) that all files have been prepared, and that the Production process may begin.</li></ol><p>If you are unable to undertake this work at this time or have any questions, please contact me. Thank you for your contribution to {$contextName}.</p><p>Kind regards,</p>{$signature}'),
(48, 'EDITOR_ASSIGN_SUBMISSION', 'en', 'Assign Editor', 'You have been assigned as an editor on a submission to {$contextName}', '<p>Dear {$recipientName},</p><p>The following submission has been assigned to you to see through the editorial process.</p><p><a href="{$submissionUrl}">{$submissionTitle}</a><br />{$authors}</p><p><b>Abstract</b></p>{$submissionAbstract}<p>If you find the submission to be relevant for {$contextName}, please forward the submission to the review stage by selecting "Send to Internal Review" and then assign reviewers by clicking "Add Reviewer".</p><p>If the submission is not appropriate for this press, please decline the submission.</p><p>Thank you in advance.</p><p>Kind regards,</p>{$contextSignature}'),
(49, 'EDITOR_ASSIGN_REVIEW', 'en', 'Assign Editor', 'You have been assigned as an editor on a submission to {$contextName}', '<p>Dear {$recipientName},</p><p>The following submission has been assigned to you to see through the review stage.</p><p><a href="{$submissionUrl}">{$submissionTitle}</a><br />{$authors}</p><p><b>Abstract</b></p>{$submissionAbstract}<p>Please login to <a href="{$submissionUrl}">view the submission</a> and assign qualified reviewers. You can assign a reviewer by clicking "Add Reviewer".</p><p>Thank you in advance.</p><p>Kind regards,</p>{$signature}'),
(50, 'EDITOR_ASSIGN_PRODUCTION', 'en', 'Assign Editor', 'You have been assigned as an editor on a submission to {$contextName}', '<p>Dear {$recipientName},</p><p>The following submission has been assigned to you to see through the production stage.</p><p><a href="{$submissionUrl}">{$submissionTitle}</a><br />{$authors}</p><p><b>Abstract</b></p>{$submissionAbstract}<p>Please login to <a href="{$submissionUrl}">view the submission</a>. Once production-ready files are available, upload them under the <strong>Publication > Publication Formats</strong> section.</p><p>Thank you in advance.</p><p>Kind regards,</p>{$signature}'),
(51, 'LAYOUT_REQUEST', 'en', 'Ready for Production', 'Submission {$submissionId} is ready for production at {$contextAcronym}', '<p>Dear {$recipientName},</p><p>A new submission is ready for layout editing:</p><p><a href="{$submissionUrl}">{$submissionId} {$submissionTitle}</a><br />{$contextName}</p><ol><li>Click on the Submission URL above.</li><li>Download the Production Ready files and use them to create the galleys according to the press''s standards.</li><li>Upload the galleys to the Publication Formats section of the submission.</li><li>Use the Production Discussions to notify the editor that the galleys are ready.</li></ol><p>If you are unable to undertake this work at this time or have any questions, please contact me. Thank you for your contribution to this press.</p><p>Kind regards,</p>{$signature}'),
(52, 'LAYOUT_COMPLETE', 'en', 'Galleys Complete', 'Galleys Complete', '<p>Dear {$recipientName},<p><p>Galleys have now been prepared for the following submission and are ready for final review.</p><p><a href="{$submissionUrl}">{$submissionTitle}</a><br />{$contextName}</p><p>If you have any questions, please contact me.</p><p>Kind regards,</p><p>{$senderName}</p>'),
(53, 'INDEX_REQUEST', 'en', 'Index Requested', 'Request Index', '{$recipientName}:<br />\n<br />\nThe submission &quot;{$submissionTitle}&quot; to {$contextName} now needs indexes created by following these steps.<br />\n1. Click on the Submission URL below.<br />\n2. Log into the press and use the Page Proofs file to create the galleys according to press standards.<br />\n3. Send the COMPLETE email to the editor.<br />\n<br />\n{$contextName} URL: {$contextUrl}<br />\nSubmission URL: {$submissionUrl}<br />\nUsername: {$recipientUsername}<br />\n<br />\nIf you are unable to undertake this work at this time or have any questions, please contact me. Thank you for your contribution to this press.<br />\n<br />\n{$signature}'),
(54, 'INDEX_COMPLETE', 'en', 'Index Completed', 'Index Galleys Complete', '{$recipientName}:<br />\n<br />\nIndexes have now been prepared for the manuscript, &quot;{$submissionTitle},&quot; for {$contextName} and are ready for proofreading.<br />\n<br />\nIf you have any questions, please contact me.<br />\n<br />\n{$senderName}'),
(55, 'VERSION_CREATED', 'en', 'Version Created', 'A new version was created for "{$submissionTitle}"', '<p>Dear {$recipientName}, </p><p>This is an automated message to inform you that a new version of your submission, "{$submissionTitle}", was created. You can view this version from your submission dashboard at the following link:</p><p><a href="{$submissionUrl}">"{$submissionTitle}"</a></p><hr><p>This is an automatic email sent from <a href="{$contextUrl}">{$contextName}</a>.</p>'),
(56, 'EDITORIAL_REMINDER', 'en', 'Editorial Reminder', 'Outstanding editorial tasks for {$contextName}', '<p>Dear {$recipientName},</p><p>You are currently assigned to {$numberOfSubmissions} submissions in <a href="{$contextUrl}">{$contextName}</a>. The following submissions are <b>waiting for your response</b>.</p>{$outstandingTasks}<p>View all of your assignments in your <a href="{$submissionsUrl}">submission dashboard</a>.</p><p>If you have any questions about your assignments, please contact {$contactName} at {$contactEmail}.</p>'),
(57, 'SUBMISSION_SAVED_FOR_LATER', 'en', 'Submission Saved for Later', 'Resume your submission to {$contextName}', '<p>Dear {$recipientName},</p><p>Your submission details have been saved in our system, but it has not yet been submitted for consideration. You can return to complete your submission at any time by following the link below.</p><p><a href="{$submissionWizardUrl}">{$authorsShort} — "{$submissionTitle}"</a></p><hr><p>This is an automated email from <a href="{$contextUrl}">{$contextName}</a>.</p>'),
(58, 'SUBMISSION_NEEDS_EDITOR', 'en', 'Submission Needs Editor', 'A new submission needs an editor to be assigned: "{$submissionTitle}"', '<p>Dear {$recipientName},</p><p>The following submission has been submitted and there is no editor assigned.</p><p><a href="{$submissionUrl}">"{$submissionTitle}"</a><br />{$authors}</p><p><b>Abstract</b></p>{$submissionAbstract}<p>Please assign an editor who will be responsible for the submission by clicking the title above and assigning an editor under the Participants section.</p><hr><p>This is an automated email from <a href="{$contextUrl}">{$contextName}</a>.</p>'),
(59, 'CHANGE_EMAIL', 'en', 'Change Email Address Invitation', 'Confirm account contact email change request', '<p>Dear {$recipientName},</p><p>You are receiving this email because someone has requested a change of your email to {$newEmail}.</p><p>If you have made this request please <a href="{$acceptInvitationUrl}">confirm</a> the email change.</p><p>You can always <a href="{$declineInvitationUrl}">reject</a> this email change.</p><p>Please feel free to contact me with any questions about the submission or the review process.</p><p>Kind regards,</p>{$siteContactName}'),
(60, 'ORCID_COLLECT_AUTHOR_ID', 'en', 'orcidCollectAuthorId', 'Submission ORCID', 'Dear {$recipientName},<br/>\n<br/>\nYou have been listed as an author on a manuscript submission to {$contextName}.<br/>\nTo confirm your authorship, please add your ORCID id to this submission by visiting the link provided below.<br/>\n<br/>\n<a href="{$authorOrcidUrl}"><img id="orcid-id-logo" src="https://info.orcid.org/wp-content/uploads/2020/12/ORCIDiD_icon16x16.png" width=''16'' height=''16'' alt="ORCID iD icon" style="display: block; margin: 0 .5em 0 0; padding: 0; float: left;"/>Register or connect your ORCID iD</a><br/>\n<br/>\n<br>\n<a href="{$orcidAboutUrl}">More information about ORCID at {$contextName}</a><br/>\n<br/>\nIf you have any questions, please contact me.<br/>\n<br/>\n{$principalContactSignature}<br/>\n'),
(61, 'ORCID_REQUEST_AUTHOR_AUTHORIZATION', 'en', 'orcidRequestAuthorAuthorization', 'Requesting ORCID record access', 'Dear {$recipientName},<br>\n<br>\nYou have been listed as an author on the manuscript submission "{$submissionTitle}" to {$contextName}.\n<br>\n<br>\nPlease allow us to add your ORCID id to this submission and also to add the submission to your ORCID profile on publication.<br>\nVisit the link to the official ORCID website, login with your profile and authorize the access by following the instructions.<br>\n<br>\n<a href="{$authorOrcidUrl}" style="display: inline-flex; align-items: center; background-color: white; text-align: center; padding: 10px 20px; text-decoration: none; border-radius: 5px; border: 2px solid #d7d4d4;"><img id="orcid-id-logo" src="https://info.orcid.org/wp-content/uploads/2020/12/ORCIDiD_icon16x16.png" width=''16'' height=''16'' alt="ORCID iD icon" style="display: block; margin: 0 .5em 0 0; padding: 0; float: left;"/>Register or Connect your ORCID iD</a><br/>\n<br>\n<br>\nClick here to verify your account with ORCID: <a href="{$authorOrcidUrl}">{$authorOrcidUrl}.</a>\n<br>\n<br>\n<a href="{$orcidAboutUrl}">More about ORCID at {$contextName}</a><br/>\n<br>\n<br>\nIf you have any questions, please contact me.<br>\n<br>\n{$principalContactSignature}<br>\n'),
(62, 'USER_ROLE_ASSIGNMENT_INVITATION', 'en', 'User Invited to Role Notification', 'You are invited to new roles', '<div class=''email-container''>    <div class=''email-header''>        <h2>Invitation to New Role</h2>    </div>    <div class=''email-content''>        <p>Dear {$recipientName},</p>        <p>In light of your expertise, you have been invited by {$inviterName} to take on new roles at {$contextName}</p>        <p>At {$contextName}, we value your privacy. As such, we have taken steps to ensure that we are fully GDPR compliant. These steps include you being accountable to enter your own data and choosing who can see what information. For additional information on how we handled your data, please refer to our Privacy Policy.</p>        <div>{$existingRoles}</div>        <div>{$rolesAdded}</div>        <p>On accepting the invite, you will be redirected to {$contextName}.</p>        <p>Feel free to contact me with any questions about the process.</p>        <p><a href=''{$acceptUrl}'' class=''btn btn-accept''>Accept Invitation</a></p>        <p><a href=''{$declineUrl}'' class=''btn btn-decline''>Decline Invitation</a></p>        <p>Kind regards,</p>        <p>{$contextName}</p>    </div></div>'),
(63, 'USER_ROLE_END', 'en', 'User Role Ended Notification', 'You have been removed from a role', '<div class=''email-container''>    <div class=''email-header''>        <h2>Removed from a Role</h2>    </div>    <div class=''email-content''>        <p>Dear {$recipientName},</p>        <p>Thank you very much for your participation in the role of {$roleRemoved} at {$contextName}.</p>        <p>This is a notice to let you know that you have been removed from the following role at {$contextName}: <b>{$roleRemoved}</b>.</p>        <p>Your account with {$contextName} is still active and any other roles you previously held are still active.</p>        <p>Feel free to contact me with any questions about the process.</p>        <p>Kind regards,</p>        <p>{$contextName}</p>    </div></div>'),
(64, 'USER_ROLE_MASTHEAD_UPDATE', 'en', 'User Role Masthead Visibility Update Notification', 'Your journal masthead visibility has been updated', '<div class=''email-container''>    <div class=''email-header''>        <h2>Updated role masthead visibility</h2>    </div>    <div class=''email-content''>        <p>Dear {$recipientName},</p>        <p>Your journal masthead visibility for the role {$roleNameAndDates} in {$contextName} has been updated.</p>        <p>New setting: {$appearOnMasthead}</p>        <p>If you have questions about this change, please contact the journal manager.</p>        <p>Kind regards,</p>        <p>{$contextName}</p>    </div></div>'),
(65, 'ORCID_REQUEST_UPDATE_SCOPE', 'en', 'orcidRequestUpdateScope', 'Requesting updated ORCID record access', 'Dear {$recipientName},<br>\n<br>\nYou are listed as a contributor (author or reviewer) on the manuscript submission "{$submissionTitle}" to {$contextName}.\n<br>\n<br>\nYou have previously authorized {$contextName} to list your ORCID id on the site, and we require updateded permissions to add your contribution to your ORCID profile.<br>\nVisit the link to the official ORCID website, login with your profile and authorize the access by following the instructions.<br>\n<br>\n<a href="{$authorOrcidUrl}" style="display: inline-flex; align-items: center; background-color: white; text-align: center; padding: 10px 20px; text-decoration: none; border-radius: 5px; border: 2px solid #d7d4d4;"><img id="orcid-id-logo" src="https://info.orcid.org/wp-content/uploads/2020/12/ORCIDiD_icon16x16.png" width=''16'' height=''16'' alt="ORCID iD icon" style="display: block; margin: 0 .5em 0 0; padding: 0; float: left;"/>Register or Connect your ORCID iD</a><br/>\n<br>\n<br>\nClick here to update your account with ORCID: <a href="{$authorOrcidUrl}">{$authorOrcidUrl}.</a>\n<br>\n<br>\n<a href="{$orcidAboutUrl}">More about ORCID at {$contextName}</a><br/>\n<br>\n<br>\nIf you have any questions, please contact me.<br>\n<br>\n{$principalContactSignature}<br>\n'),
(66, 'MANUAL_PAYMENT_NOTIFICATION', 'en', 'Manual Payment Notify', 'Manual Payment Notification', 'A manual payment needs to be processed for the press {$contextName} and the user {$senderName} (username &quot;{$senderUsername}&quot;).<br />\n<br />\nThe item being paid for is &quot;{$paymentName}&quot;.<br />\nThe cost is {$paymentAmount} ({$paymentCurrencyCode}).<br />\n<br />\nThis email was generated by the Open Monograph Press Manual Payment plugin.');

-- --------------------------------------------------------

--
-- Table structure for table `email_templates_settings`
--

CREATE TABLE `email_templates_settings` (
  `email_template_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `email_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  PRIMARY KEY (`email_template_setting_id`),
  UNIQUE KEY `email_templates_settings_unique` (`email_id`,`locale`,`setting_name`),
  KEY `email_templates_settings_email_id` (`email_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about custom email templates, including localized properties such as the subject and body.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `event_log`
--

CREATE TABLE `event_log` (
  `log_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `assoc_type` bigint(20) NOT NULL,
  `assoc_id` bigint(20) NOT NULL,
  `user_id` bigint(20) DEFAULT NULL COMMENT 'NULL if it''s system or automated event',
  `date_logged` datetime NOT NULL,
  `event_type` bigint(20) DEFAULT NULL,
  `message` text,
  `is_translated` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`log_id`),
  KEY `event_log_user_id` (`user_id`),
  KEY `event_log_assoc` (`assoc_type`,`assoc_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A log of all events related to an object like a submission.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `event_log_settings`
--

CREATE TABLE `event_log_settings` (
  `event_log_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `log_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  PRIMARY KEY (`event_log_setting_id`),
  UNIQUE KEY `event_log_settings_unique` (`log_id`,`setting_name`,`locale`),
  KEY `event_log_settings_log_id` (`log_id`),
  KEY `event_log_settings_name_value` (`setting_name`(50),`setting_value`(150))
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data about an event log entry. This data is commonly used to display information about an event to a user.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `failed_jobs`
--

CREATE TABLE `failed_jobs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `connection` text NOT NULL,
  `queue` text NOT NULL,
  `payload` longtext NOT NULL,
  `exception` longtext NOT NULL,
  `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A log of all failed jobs.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `features`
--

CREATE TABLE `features` (
  `feature_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `assoc_type` bigint(20) NOT NULL,
  `assoc_id` bigint(20) NOT NULL,
  `seq` bigint(20) NOT NULL,
  PRIMARY KEY (`feature_id`),
  UNIQUE KEY `press_features_unique` (`assoc_type`,`assoc_id`,`submission_id`),
  KEY `features_submission_id` (`submission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Information about which submissions are featured in the press.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `files`
--

CREATE TABLE `files` (
  `file_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `path` varchar(255) NOT NULL,
  `mimetype` varchar(255) NOT NULL,
  PRIMARY KEY (`file_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Records information in the database about files tracked by the system, linking them to the local filesystem.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `filters`
--

CREATE TABLE `filters` (
  `filter_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `filter_group_id` bigint(20) NOT NULL,
  `context_id` bigint(20) DEFAULT NULL,
  `display_name` varchar(255) DEFAULT NULL,
  `class_name` varchar(255) DEFAULT NULL,
  `is_template` smallint(6) NOT NULL DEFAULT '0',
  `parent_filter_id` bigint(20) DEFAULT NULL,
  `seq` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`filter_id`),
  KEY `filters_filter_group_id` (`filter_group_id`),
  KEY `filters_context_id` (`context_id`),
  KEY `filters_parent_filter_id` (`parent_filter_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COMMENT='Filters represent a transformation of a supported piece of data from one form to another, such as a PHP object into an XML document.' AUTO_INCREMENT=20 ;

--
-- Dumping data for table `filters`
--

INSERT INTO `filters` VALUES
(1, 1, NULL, 'Extract metadata from a(n) PublicationFormat', 'APP\\plugins\\metadata\\dc11\\filter\\Dc11SchemaPublicationFormatAdapter', 0, NULL, 0),
(2, 2, NULL, 'User XML user export', 'PKP\\plugins\\importexport\\users\\filter\\PKPUserUserXmlFilter', 0, NULL, 0),
(3, 3, NULL, 'User XML user import', 'PKP\\plugins\\importexport\\users\\filter\\UserXmlPKPUserFilter', 0, NULL, 0),
(4, 4, NULL, 'Native XML user group export', 'PKP\\plugins\\importexport\\users\\filter\\UserGroupNativeXmlFilter', 0, NULL, 0),
(5, 5, NULL, 'Native XML user group import', 'PKP\\plugins\\importexport\\users\\filter\\NativeXmlUserGroupFilter', 0, NULL, 0),
(6, 6, NULL, 'ONIX 3.0 XML monograph export', 'APP\\plugins\\importexport\\onix30\\filter\\MonographONIX30XmlFilter', 0, NULL, 0),
(7, 7, NULL, 'Native XML submission export', 'APP\\plugins\\importexport\\native\\filter\\MonographNativeXmlFilter', 0, NULL, 0),
(8, 8, NULL, 'Native XML submission import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlMonographFilter', 0, NULL, 0),
(9, 9, NULL, 'Native XML author export', 'APP\\plugins\\importexport\\native\\filter\\AuthorNativeXmlFilter', 0, NULL, 0),
(10, 10, NULL, 'Native XML author import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlAuthorFilter', 0, NULL, 0),
(11, 11, NULL, 'Native XML representation export', 'APP\\plugins\\importexport\\native\\filter\\PublicationFormatNativeXmlFilter', 0, NULL, 0),
(12, 12, NULL, 'Native XML representation import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlPublicationFormatFilter', 0, NULL, 0),
(13, 14, NULL, 'Native XML submission file import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlMonographFileFilter', 0, NULL, 0),
(14, 13, NULL, 'Native XML submission file export', 'PKP\\plugins\\importexport\\native\\filter\\SubmissionFileNativeXmlFilter', 0, NULL, 0),
(15, 15, NULL, 'ONIX 3.0 XML monograph export', 'APP\\plugins\\importexport\\onix30\\filter\\MonographONIX30XmlFilter', 0, NULL, 0),
(16, 16, NULL, 'Native XML Publication export', 'APP\\plugins\\importexport\\native\\filter\\PublicationNativeXmlFilter', 0, NULL, 0),
(17, 17, NULL, 'Native XML publication import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlPublicationFilter', 0, NULL, 0),
(18, 18, NULL, 'Native XML chapter export', 'APP\\plugins\\importexport\\native\\filter\\ChapterNativeXmlFilter', 0, NULL, 0),
(19, 19, NULL, 'Native XML Chapter import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlChapterFilter', 0, NULL, 0);

-- --------------------------------------------------------

--
-- Table structure for table `filter_groups`
--

CREATE TABLE `filter_groups` (
  `filter_group_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `symbolic` varchar(255) DEFAULT NULL,
  `display_name` varchar(255) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `input_type` varchar(255) DEFAULT NULL,
  `output_type` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`filter_group_id`),
  UNIQUE KEY `filter_groups_symbolic` (`symbolic`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COMMENT='Filter groups are used to organized filters into named sets, which can be retrieved by the application for invocation.' AUTO_INCREMENT=20 ;

--
-- Dumping data for table `filter_groups`
--

INSERT INTO `filter_groups` VALUES
(1, 'publicationFormat=>dc11', 'plugins.metadata.dc11.publicationFormatAdapter.displayName', 'plugins.metadata.dc11.publicationFormatAdapter.description', 'class::classes.publicationFormat.PublicationFormat', 'metadata::APP\\plugins\\metadata\\dc11\\schema\\Dc11Schema(PUBLICATION_FORMAT)'),
(2, 'user=>user-xml', 'plugins.importexport.users.displayName', 'plugins.importexport.users.description', 'class::PKP\\user\\User[]', 'xml::schema(lib/pkp/plugins/importexport/users/pkp-users.xsd)'),
(3, 'user-xml=>user', 'plugins.importexport.users.displayName', 'plugins.importexport.users.description', 'xml::schema(lib/pkp/plugins/importexport/users/pkp-users.xsd)', 'class::PKP\\user\\User[]'),
(4, 'usergroup=>user-xml', 'plugins.importexport.users.displayName', 'plugins.importexport.users.description', 'class::PKP\\userGroup\\UserGroup[]', 'xml::schema(lib/pkp/plugins/importexport/users/pkp-users.xsd)'),
(5, 'user-xml=>usergroup', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(lib/pkp/plugins/importexport/users/pkp-users.xsd)', 'class::PKP\\userGroup\\UserGroup[]'),
(6, 'monographs=>onix30-xml', 'plugins.importexport.onix30.displayName', 'plugins.importexport.onix30.description', 'class::classes.submission.Submission[]', 'xml::schema(plugins/importexport/onix30/ONIX_BookProduct_3.0_reference.xsd)'),
(7, 'monograph=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::classes.submission.Submission[]', 'xml::schema(plugins/importexport/native/native.xsd)'),
(8, 'native-xml=>monograph', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::classes.submission.Submission[]'),
(9, 'author=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::classes.author.Author[]', 'xml::schema(plugins/importexport/native/native.xsd)'),
(10, 'native-xml=>author', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::classes.author.Author[]'),
(11, 'publication-format=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::classes.publicationFormat.PublicationFormat', 'xml::schema(plugins/importexport/native/native.xsd)'),
(12, 'native-xml=>PublicationFormat', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::classes.publicationFormat.PublicationFormat[]'),
(13, 'SubmissionFile=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::lib.pkp.classes.submissionFile.SubmissionFile', 'xml::schema(plugins/importexport/native/native.xsd)'),
(14, 'native-xml=>SubmissionFile', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::lib.pkp.classes.submissionFile.SubmissionFile[]'),
(15, 'monograph=>onix30-xml', 'plugins.importexport.onix30.displayName', 'plugins.importexport.onix30.description', 'class::classes.submission.Submission', 'xml::schema(plugins/importexport/onix30/ONIX_BookProduct_3.0_reference.xsd)'),
(16, 'publication=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::classes.publication.Publication', 'xml::schema(plugins/importexport/native/native.xsd)'),
(17, 'native-xml=>Publication', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::classes.publication.Publication[]'),
(18, 'chapter=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::classes.monograph.Chapter[]', 'xml::schema(plugins/importexport/native/native.xsd)'),
(19, 'native-xml=>chapter', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::classes.monograph.Chapter[]');

-- --------------------------------------------------------

--
-- Table structure for table `filter_settings`
--

CREATE TABLE `filter_settings` (
  `filter_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `filter_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  `setting_type` varchar(6) NOT NULL,
  PRIMARY KEY (`filter_setting_id`),
  UNIQUE KEY `filter_settings_unique` (`filter_id`,`locale`,`setting_name`),
  KEY `filter_settings_id` (`filter_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about filters, including localized content.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `genres`
--

CREATE TABLE `genres` (
  `genre_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) NOT NULL,
  `seq` bigint(20) NOT NULL,
  `enabled` smallint(6) NOT NULL DEFAULT '1',
  `category` bigint(20) NOT NULL DEFAULT '1',
  `dependent` smallint(6) NOT NULL DEFAULT '0',
  `supplementary` smallint(6) NOT NULL DEFAULT '0',
  `required` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Whether or not at least one file of this genre is required for a new submission.',
  `entry_key` varchar(30) DEFAULT NULL,
  PRIMARY KEY (`genre_id`),
  KEY `genres_context_id` (`context_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='The types of submission files configured for each context, such as Article Text, Data Set, Transcript, etc.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `genre_settings`
--

CREATE TABLE `genre_settings` (
  `genre_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `genre_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object)',
  PRIMARY KEY (`genre_setting_id`),
  UNIQUE KEY `genre_settings_unique` (`genre_id`,`locale`,`setting_name`),
  KEY `genre_settings_genre_id` (`genre_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about file genres, including localized properties such as the genre name.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `highlights`
--

CREATE TABLE `highlights` (
  `highlight_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) DEFAULT NULL,
  `sequence` bigint(20) NOT NULL,
  `url` varchar(2047) NOT NULL,
  PRIMARY KEY (`highlight_id`),
  KEY `highlights_context_id` (`context_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Highlights are featured items that can be presented to users, for example on the homepage.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `highlight_settings`
--

CREATE TABLE `highlight_settings` (
  `highlight_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `highlight_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  PRIMARY KEY (`highlight_setting_id`),
  UNIQUE KEY `highlight_settings_unique` (`highlight_id`,`locale`,`setting_name`),
  KEY `highlight_settings_highlight_id` (`highlight_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about highlights, including localized properties like title and description.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `identification_codes`
--

CREATE TABLE `identification_codes` (
  `identification_code_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `publication_format_id` bigint(20) NOT NULL,
  `code` varchar(40) NOT NULL,
  `value` varchar(255) NOT NULL,
  PRIMARY KEY (`identification_code_id`),
  KEY `identification_codes_publication_format_id` (`publication_format_id`),
  KEY `identification_codes_key` (`identification_code_id`,`publication_format_id`,`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='ONIX identification codes for publication formats.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `institutions`
--

CREATE TABLE `institutions` (
  `institution_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) NOT NULL,
  `ror` varchar(255) DEFAULT NULL COMMENT 'ROR (Research Organization Registry) ID',
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`institution_id`),
  KEY `institutions_context_id` (`context_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Institutions for statistics and subscriptions.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `institution_ip`
--

CREATE TABLE `institution_ip` (
  `institution_ip_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `institution_id` bigint(20) NOT NULL,
  `ip_string` varchar(40) NOT NULL,
  `ip_start` bigint(20) NOT NULL,
  `ip_end` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`institution_ip_id`),
  KEY `institution_ip_institution_id` (`institution_id`),
  KEY `institution_ip_start` (`ip_start`),
  KEY `institution_ip_end` (`ip_end`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Records IP address ranges and associates them with institutions.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `institution_settings`
--

CREATE TABLE `institution_settings` (
  `institution_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `institution_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  PRIMARY KEY (`institution_setting_id`),
  UNIQUE KEY `institution_settings_unique` (`institution_id`,`locale`,`setting_name`),
  KEY `institution_settings_institution_id` (`institution_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about institutions, including localized properties like names.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `invitations`
--

CREATE TABLE `invitations` (
  `invitation_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `key_hash` varchar(255) DEFAULT NULL,
  `type` varchar(255) NOT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `inviter_id` bigint(20) DEFAULT NULL,
  `expiry_date` datetime DEFAULT NULL,
  `payload` json DEFAULT NULL,
  `status` enum('INITIALIZED','PENDING','ACCEPTED','DECLINED','CANCELLED') NOT NULL,
  `email` varchar(255) DEFAULT NULL COMMENT 'When present, the email address of the invitation recipient; when null, user_id must be set and the email can be fetched from the users table.',
  `context_id` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`invitation_id`),
  KEY `invitations_user_id` (`user_id`),
  KEY `invitations_inviter_id` (`inviter_id`),
  KEY `invitations_context_id` (`context_id`),
  KEY `invitations_status_context_id_user_id_type_index` (`status`,`context_id`,`user_id`,`type`),
  KEY `invitations_expiry_date_index` (`expiry_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Invitations are sent to request a person (by email) to allow them to accept or reject an operation or position, such as a board membership or a submission peer review.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `jobs`
--

CREATE TABLE `jobs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `queue` varchar(255) NOT NULL,
  `payload` longtext NOT NULL,
  `attempts` tinyint(3) unsigned NOT NULL,
  `reserved_at` int(10) unsigned DEFAULT NULL,
  `available_at` int(10) unsigned NOT NULL,
  `created_at` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `jobs_queue_reserved_at_index` (`queue`,`reserved_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='All pending or in-progress jobs.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `job_batches`
--

CREATE TABLE `job_batches` (
  `id` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `total_jobs` int(11) NOT NULL,
  `pending_jobs` int(11) NOT NULL,
  `failed_jobs` int(11) NOT NULL,
  `failed_job_ids` text NOT NULL,
  `options` mediumtext,
  `cancelled_at` int(11) DEFAULT NULL,
  `created_at` int(11) NOT NULL,
  `finished_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Job batches allow jobs to be collected into groups for managed processing.';

-- --------------------------------------------------------

--
-- Table structure for table `library_files`
--

CREATE TABLE `library_files` (
  `file_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) NOT NULL,
  `file_name` varchar(255) NOT NULL,
  `original_file_name` varchar(255) NOT NULL,
  `file_type` varchar(255) NOT NULL,
  `file_size` bigint(20) NOT NULL,
  `type` smallint(6) NOT NULL,
  `date_uploaded` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  `submission_id` bigint(20) DEFAULT NULL,
  `public_access` smallint(6) DEFAULT '0',
  PRIMARY KEY (`file_id`),
  KEY `library_files_context_id` (`context_id`),
  KEY `library_files_submission_id` (`submission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Library files can be associated with the context (press/server/journal) or with individual submissions, and are typically forms, agreements, and other administrative documents that are not part of the scholarly content.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `library_file_settings`
--

CREATE TABLE `library_file_settings` (
  `library_file_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `file_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object|date)',
  PRIMARY KEY (`library_file_setting_id`),
  UNIQUE KEY `library_file_settings_unique` (`file_id`,`locale`,`setting_name`),
  KEY `library_file_settings_file_id` (`file_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about library files, including localized content such as names.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `markets`
--

CREATE TABLE `markets` (
  `market_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `publication_format_id` bigint(20) NOT NULL,
  `countries_included` text,
  `countries_excluded` text,
  `regions_included` text,
  `regions_excluded` text,
  `market_date_role` varchar(40) NOT NULL,
  `market_date_format` varchar(40) NOT NULL,
  `market_date` varchar(255) NOT NULL,
  `price` varchar(255) DEFAULT NULL,
  `discount` varchar(255) DEFAULT NULL,
  `price_type_code` varchar(255) DEFAULT NULL,
  `currency_code` varchar(255) DEFAULT NULL,
  `tax_rate_code` varchar(255) DEFAULT NULL,
  `tax_type_code` varchar(255) DEFAULT NULL,
  `agent_id` bigint(20) DEFAULT NULL,
  `supplier_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`market_id`),
  KEY `markets_publication_format_id` (`publication_format_id`),
  KEY `format_markets_pkey` (`market_id`,`publication_format_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='ONIX market information for publication formats.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `metrics_context`
--

CREATE TABLE `metrics_context` (
  `metrics_context_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `load_id` varchar(50) NOT NULL,
  `context_id` bigint(20) NOT NULL,
  `date` date NOT NULL,
  `metric` int(11) NOT NULL,
  PRIMARY KEY (`metrics_context_id`),
  KEY `metrics_context_load_id` (`load_id`),
  KEY `metrics_context_context_id` (`context_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Daily statistics for views of the homepage.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `metrics_counter_submission_daily`
--

CREATE TABLE `metrics_counter_submission_daily` (
  `metrics_counter_submission_daily_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `load_id` varchar(50) NOT NULL,
  `context_id` bigint(20) NOT NULL,
  `submission_id` bigint(20) NOT NULL,
  `date` date NOT NULL,
  `metric_book_investigations` int(11) NOT NULL,
  `metric_book_investigations_unique` int(11) NOT NULL,
  `metric_book_requests` int(11) NOT NULL,
  `metric_book_requests_unique` int(11) NOT NULL,
  `metric_chapter_investigations` int(11) NOT NULL,
  `metric_chapter_investigations_unique` int(11) NOT NULL,
  `metric_chapter_requests` int(11) NOT NULL,
  `metric_chapter_requests_unique` int(11) NOT NULL,
  `metric_title_investigations_unique` int(11) NOT NULL,
  `metric_title_requests_unique` int(11) NOT NULL,
  PRIMARY KEY (`metrics_counter_submission_daily_id`),
  UNIQUE KEY `msd_uc_load_id_context_id_submission_id_date` (`load_id`,`context_id`,`submission_id`,`date`),
  KEY `msd_load_id` (`load_id`),
  KEY `metrics_counter_submission_daily_context_id` (`context_id`),
  KEY `metrics_counter_submission_daily_submission_id` (`submission_id`),
  KEY `msd_context_id_submission_id` (`context_id`,`submission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Daily statistics matching the COUNTER R5 protocol for views and downloads of published submissions and files.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `metrics_counter_submission_institution_daily`
--

CREATE TABLE `metrics_counter_submission_institution_daily` (
  `metrics_counter_submission_institution_daily_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `load_id` varchar(50) NOT NULL,
  `context_id` bigint(20) NOT NULL,
  `submission_id` bigint(20) NOT NULL,
  `institution_id` bigint(20) NOT NULL,
  `date` date NOT NULL,
  `metric_book_investigations` int(11) NOT NULL,
  `metric_book_investigations_unique` int(11) NOT NULL,
  `metric_book_requests` int(11) NOT NULL,
  `metric_book_requests_unique` int(11) NOT NULL,
  `metric_chapter_investigations` int(11) NOT NULL,
  `metric_chapter_investigations_unique` int(11) NOT NULL,
  `metric_chapter_requests` int(11) NOT NULL,
  `metric_chapter_requests_unique` int(11) NOT NULL,
  `metric_title_investigations_unique` int(11) NOT NULL,
  `metric_title_requests_unique` int(11) NOT NULL,
  PRIMARY KEY (`metrics_counter_submission_institution_daily_id`),
  UNIQUE KEY `msid_uc_load_id_context_id_submission_id_institution_id_date` (`load_id`,`context_id`,`submission_id`,`institution_id`,`date`),
  KEY `msid_load_id` (`load_id`),
  KEY `msid_context_id` (`context_id`),
  KEY `msid_submission_id` (`submission_id`),
  KEY `msid_institution_id` (`institution_id`),
  KEY `msid_context_id_submission_id` (`context_id`,`submission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Daily statistics matching the COUNTER R5 protocol for views and downloads from institutions.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `metrics_counter_submission_institution_monthly`
--

CREATE TABLE `metrics_counter_submission_institution_monthly` (
  `metrics_counter_submission_institution_monthly_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) NOT NULL,
  `submission_id` bigint(20) NOT NULL,
  `institution_id` bigint(20) NOT NULL,
  `month` int(11) NOT NULL,
  `metric_book_investigations` int(11) NOT NULL,
  `metric_book_investigations_unique` int(11) NOT NULL,
  `metric_book_requests` int(11) NOT NULL,
  `metric_book_requests_unique` int(11) NOT NULL,
  `metric_chapter_investigations` int(11) NOT NULL,
  `metric_chapter_investigations_unique` int(11) NOT NULL,
  `metric_chapter_requests` int(11) NOT NULL,
  `metric_chapter_requests_unique` int(11) NOT NULL,
  `metric_title_investigations_unique` int(11) NOT NULL,
  `metric_title_requests_unique` int(11) NOT NULL,
  PRIMARY KEY (`metrics_counter_submission_institution_monthly_id`),
  UNIQUE KEY `msim_uc_context_id_submission_id_institution_id_month` (`context_id`,`submission_id`,`institution_id`,`month`),
  KEY `msim_context_id` (`context_id`),
  KEY `msim_submission_id` (`submission_id`),
  KEY `msim_institution_id` (`institution_id`),
  KEY `msim_context_id_submission_id` (`context_id`,`submission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Monthly statistics matching the COUNTER R5 protocol for views and downloads from institutions.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `metrics_counter_submission_monthly`
--

CREATE TABLE `metrics_counter_submission_monthly` (
  `metrics_counter_submission_monthly_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) NOT NULL,
  `submission_id` bigint(20) NOT NULL,
  `month` int(11) NOT NULL,
  `metric_book_investigations` int(11) NOT NULL,
  `metric_book_investigations_unique` int(11) NOT NULL,
  `metric_book_requests` int(11) NOT NULL,
  `metric_book_requests_unique` int(11) NOT NULL,
  `metric_chapter_investigations` int(11) NOT NULL,
  `metric_chapter_investigations_unique` int(11) NOT NULL,
  `metric_chapter_requests` int(11) NOT NULL,
  `metric_chapter_requests_unique` int(11) NOT NULL,
  `metric_title_investigations_unique` int(11) NOT NULL,
  `metric_title_requests_unique` int(11) NOT NULL,
  PRIMARY KEY (`metrics_counter_submission_monthly_id`),
  UNIQUE KEY `msm_uc_context_id_submission_id_month` (`context_id`,`submission_id`,`month`),
  KEY `metrics_counter_submission_monthly_context_id` (`context_id`),
  KEY `metrics_counter_submission_monthly_submission_id` (`submission_id`),
  KEY `msm_context_id_submission_id` (`context_id`,`submission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Monthly statistics matching the COUNTER R5 protocol for views and downloads of published submissions and files.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `metrics_series`
--

CREATE TABLE `metrics_series` (
  `metrics_series_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `load_id` varchar(50) NOT NULL,
  `context_id` bigint(20) NOT NULL,
  `series_id` bigint(20) NOT NULL,
  `date` date NOT NULL,
  `metric` int(11) NOT NULL,
  PRIMARY KEY (`metrics_series_id`),
  KEY `metrics_series_load_id` (`load_id`),
  KEY `metrics_series_context_id` (`context_id`),
  KEY `metrics_series_series_id` (`series_id`),
  KEY `metrics_series_context_id_series_id` (`context_id`,`series_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Daily statistics for views of published submissions in each series.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `metrics_submission`
--

CREATE TABLE `metrics_submission` (
  `metrics_submission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `load_id` varchar(50) NOT NULL,
  `context_id` bigint(20) NOT NULL,
  `submission_id` bigint(20) NOT NULL,
  `chapter_id` bigint(20) DEFAULT NULL,
  `representation_id` bigint(20) DEFAULT NULL,
  `submission_file_id` bigint(20) unsigned DEFAULT NULL,
  `file_type` bigint(20) DEFAULT NULL,
  `assoc_type` bigint(20) NOT NULL,
  `date` date NOT NULL,
  `metric` int(11) NOT NULL,
  PRIMARY KEY (`metrics_submission_id`),
  KEY `ms_load_id` (`load_id`),
  KEY `metrics_submission_context_id` (`context_id`),
  KEY `metrics_submission_submission_id` (`submission_id`),
  KEY `metrics_submission_chapter_id` (`chapter_id`),
  KEY `metrics_submission_representation_id` (`representation_id`),
  KEY `metrics_submission_submission_file_id` (`submission_file_id`),
  KEY `ms_context_id_submission_id_assoc_type_file_type` (`context_id`,`submission_id`,`assoc_type`,`file_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Daily statistics for views and downloads of published submissions and files.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `metrics_submission_geo_daily`
--

CREATE TABLE `metrics_submission_geo_daily` (
  `metrics_submission_geo_daily_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `load_id` varchar(50) NOT NULL,
  `context_id` bigint(20) NOT NULL,
  `submission_id` bigint(20) NOT NULL,
  `country` varchar(2) NOT NULL DEFAULT '',
  `region` varchar(3) NOT NULL DEFAULT '',
  `city` varchar(255) NOT NULL DEFAULT '',
  `date` date NOT NULL,
  `metric` int(11) NOT NULL,
  `metric_unique` int(11) NOT NULL,
  PRIMARY KEY (`metrics_submission_geo_daily_id`),
  UNIQUE KEY `msgd_uc_load_context_submission_c_r_c_date` (`load_id`,`context_id`,`submission_id`,`country`,`region`,`city`(80),`date`),
  KEY `msgd_load_id` (`load_id`),
  KEY `metrics_submission_geo_daily_context_id` (`context_id`),
  KEY `metrics_submission_geo_daily_submission_id` (`submission_id`),
  KEY `msgd_context_id_submission_id` (`context_id`,`submission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Daily statistics by country, region and city for views and downloads of published submissions and files.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `metrics_submission_geo_monthly`
--

CREATE TABLE `metrics_submission_geo_monthly` (
  `metrics_submission_geo_monthly_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) NOT NULL,
  `submission_id` bigint(20) NOT NULL,
  `country` varchar(2) NOT NULL DEFAULT '',
  `region` varchar(3) NOT NULL DEFAULT '',
  `city` varchar(255) NOT NULL DEFAULT '',
  `month` int(11) NOT NULL,
  `metric` int(11) NOT NULL,
  `metric_unique` int(11) NOT NULL,
  PRIMARY KEY (`metrics_submission_geo_monthly_id`),
  UNIQUE KEY `msgm_uc_context_submission_c_r_c_month` (`context_id`,`submission_id`,`country`,`region`,`city`(80),`month`),
  KEY `metrics_submission_geo_monthly_context_id` (`context_id`),
  KEY `metrics_submission_geo_monthly_submission_id` (`submission_id`),
  KEY `msgm_context_id_submission_id` (`context_id`,`submission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Monthly statistics by country, region and city for views and downloads of published submissions and files.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `navigation_menus`
--

CREATE TABLE `navigation_menus` (
  `navigation_menu_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) DEFAULT NULL,
  `area_name` varchar(255) DEFAULT '',
  `title` varchar(255) NOT NULL,
  PRIMARY KEY (`navigation_menu_id`),
  KEY `navigation_menus_context_id` (`context_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COMMENT='Navigation menus on the website are installed with the software as a default set, and can be customized.' AUTO_INCREMENT=2 ;

--
-- Dumping data for table `navigation_menus`
--

INSERT INTO `navigation_menus` VALUES
(1, NULL, 'user', 'User Navigation Menu');

-- --------------------------------------------------------

--
-- Table structure for table `navigation_menu_items`
--

CREATE TABLE `navigation_menu_items` (
  `navigation_menu_item_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) DEFAULT NULL,
  `path` varchar(255) DEFAULT '',
  `type` varchar(255) DEFAULT '',
  PRIMARY KEY (`navigation_menu_item_id`),
  KEY `navigation_menu_items_context_id` (`context_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COMMENT='Navigation menu items are single elements within a navigation menu.' AUTO_INCREMENT=8 ;

--
-- Dumping data for table `navigation_menu_items`
--

INSERT INTO `navigation_menu_items` VALUES
(1, NULL, NULL, 'NMI_TYPE_USER_REGISTER'),
(2, NULL, NULL, 'NMI_TYPE_USER_LOGIN'),
(3, NULL, NULL, 'NMI_TYPE_USER_DASHBOARD'),
(4, NULL, NULL, 'NMI_TYPE_USER_DASHBOARD'),
(5, NULL, NULL, 'NMI_TYPE_USER_PROFILE'),
(6, NULL, NULL, 'NMI_TYPE_ADMINISTRATION'),
(7, NULL, NULL, 'NMI_TYPE_USER_LOGOUT');

-- --------------------------------------------------------

--
-- Table structure for table `navigation_menu_item_assignments`
--

CREATE TABLE `navigation_menu_item_assignments` (
  `navigation_menu_item_assignment_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `navigation_menu_id` bigint(20) NOT NULL,
  `navigation_menu_item_id` bigint(20) NOT NULL,
  `parent_id` bigint(20) DEFAULT NULL,
  `seq` bigint(20) DEFAULT '0',
  PRIMARY KEY (`navigation_menu_item_assignment_id`),
  KEY `navigation_menu_item_assignments_navigation_menu_id` (`navigation_menu_id`),
  KEY `navigation_menu_item_assignments_navigation_menu_item_id` (`navigation_menu_item_id`),
  KEY `navigation_menu_item_assignments_parent_id` (`parent_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COMMENT='Links navigation menu items to navigation menus.' AUTO_INCREMENT=8 ;

--
-- Dumping data for table `navigation_menu_item_assignments`
--

INSERT INTO `navigation_menu_item_assignments` VALUES
(1, 1, 1, NULL, 0),
(2, 1, 2, NULL, 1),
(3, 1, 3, NULL, 2),
(4, 1, 4, 3, 0),
(5, 1, 5, 3, 1),
(6, 1, 6, 3, 2),
(7, 1, 7, 3, 3);

-- --------------------------------------------------------

--
-- Table structure for table `navigation_menu_item_assignment_settings`
--

CREATE TABLE `navigation_menu_item_assignment_settings` (
  `navigation_menu_item_assignment_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `navigation_menu_item_assignment_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  `setting_type` varchar(6) NOT NULL,
  PRIMARY KEY (`navigation_menu_item_assignment_setting_id`),
  UNIQUE KEY `navigation_menu_item_assignment_settings_unique` (`navigation_menu_item_assignment_id`,`locale`,`setting_name`),
  KEY `navigation_menu_item_assignment_settings_n_m_i_a_id` (`navigation_menu_item_assignment_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about navigation menu item assignments to navigation menus, including localized content.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `navigation_menu_item_settings`
--

CREATE TABLE `navigation_menu_item_settings` (
  `navigation_menu_item_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `navigation_menu_item_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` longtext,
  `setting_type` varchar(6) NOT NULL,
  PRIMARY KEY (`navigation_menu_item_setting_id`),
  UNIQUE KEY `navigation_menu_item_settings_unique` (`navigation_menu_item_id`,`locale`,`setting_name`),
  KEY `navigation_menu_item_settings_navigation_menu_item_id` (`navigation_menu_item_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COMMENT='More data about navigation menu items, including localized content such as names.' AUTO_INCREMENT=8 ;

--
-- Dumping data for table `navigation_menu_item_settings`
--

INSERT INTO `navigation_menu_item_settings` VALUES
(1, 1, '', 'titleLocaleKey', 'navigation.register', 'string'),
(2, 2, '', 'titleLocaleKey', 'navigation.login', 'string'),
(3, 3, '', 'titleLocaleKey', '{$loggedInUsername}', 'string'),
(4, 4, '', 'titleLocaleKey', 'navigation.dashboard', 'string'),
(5, 5, '', 'titleLocaleKey', 'common.viewProfile', 'string'),
(6, 6, '', 'titleLocaleKey', 'navigation.admin', 'string'),
(7, 7, '', 'titleLocaleKey', 'user.logOut', 'string');

-- --------------------------------------------------------

--
-- Table structure for table `new_releases`
--

CREATE TABLE `new_releases` (
  `new_release_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `assoc_type` bigint(20) NOT NULL,
  `assoc_id` bigint(20) NOT NULL,
  PRIMARY KEY (`new_release_id`),
  UNIQUE KEY `new_releases_unique` (`assoc_type`,`assoc_id`,`submission_id`),
  KEY `new_releases_submission_id` (`submission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Information about which submissions in the press are considered new releases.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `notes`
--

CREATE TABLE `notes` (
  `note_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `assoc_type` bigint(20) NOT NULL,
  `assoc_id` bigint(20) NOT NULL,
  `user_id` bigint(20) NOT NULL,
  `date_created` datetime NOT NULL,
  `date_modified` datetime DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `contents` text,
  PRIMARY KEY (`note_id`),
  KEY `notes_user_id` (`user_id`),
  KEY `notes_assoc` (`assoc_type`,`assoc_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Notes allow users to annotate associated entities, such as submissions.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `notifications`
--

CREATE TABLE `notifications` (
  `notification_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) DEFAULT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `level` bigint(20) NOT NULL,
  `type` bigint(20) NOT NULL,
  `date_created` datetime NOT NULL,
  `date_read` datetime DEFAULT NULL,
  `assoc_type` bigint(20) DEFAULT NULL,
  `assoc_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`notification_id`),
  KEY `notifications_context_id` (`context_id`),
  KEY `notifications_user_id` (`user_id`),
  KEY `notifications_context_id_user_id` (`context_id`,`user_id`,`level`),
  KEY `notifications_context_id_level` (`context_id`,`level`),
  KEY `notifications_assoc` (`assoc_type`,`assoc_id`),
  KEY `notifications_user_id_level` (`user_id`,`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='User notifications created during certain operations.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `notification_settings`
--

CREATE TABLE `notification_settings` (
  `notification_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `notification_id` bigint(20) NOT NULL,
  `locale` varchar(28) DEFAULT NULL,
  `setting_name` varchar(64) NOT NULL,
  `setting_value` mediumtext NOT NULL,
  `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object)',
  PRIMARY KEY (`notification_setting_id`),
  UNIQUE KEY `notification_settings_unique` (`notification_id`,`locale`,`setting_name`),
  KEY `notification_settings_notification_id` (`notification_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about notifications, including localized properties.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `notification_subscription_settings`
--

CREATE TABLE `notification_subscription_settings` (
  `setting_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `setting_name` varchar(64) NOT NULL,
  `setting_value` mediumtext NOT NULL,
  `user_id` bigint(20) NOT NULL,
  `context_id` bigint(20) DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object)',
  PRIMARY KEY (`setting_id`),
  KEY `notification_subscription_settings_user_id` (`user_id`),
  KEY `notification_subscription_settings_context` (`context_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Which email notifications a user has chosen to unsubscribe from.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `oai_resumption_tokens`
--

CREATE TABLE `oai_resumption_tokens` (
  `oai_resumption_token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `token` varchar(32) NOT NULL,
  `expire` bigint(20) NOT NULL,
  `record_offset` int(11) NOT NULL,
  `params` text,
  PRIMARY KEY (`oai_resumption_token_id`),
  UNIQUE KEY `oai_resumption_tokens_unique` (`token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='OAI resumption tokens are used to allow for pagination of large result sets into manageable pieces.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `plugin_settings`
--

CREATE TABLE `plugin_settings` (
  `plugin_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `plugin_name` varchar(80) NOT NULL,
  `context_id` bigint(20) DEFAULT NULL,
  `setting_name` varchar(80) NOT NULL,
  `setting_value` mediumtext,
  `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object)',
  PRIMARY KEY (`plugin_setting_id`),
  UNIQUE KEY `plugin_settings_unique` (`plugin_name`,`context_id`,`setting_name`),
  KEY `plugin_settings_context_id` (`context_id`),
  KEY `plugin_settings_plugin_name` (`plugin_name`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COMMENT='More data about plugins, including localized properties. This table is frequently used to store plugin-specific configuration.' AUTO_INCREMENT=10 ;

--
-- Dumping data for table `plugin_settings`
--

INSERT INTO `plugin_settings` VALUES
(1, 'defaultthemeplugin', NULL, 'enabled', '1', 'bool'),
(2, 'tinymceplugin', NULL, 'enabled', '1', 'bool'),
(3, 'usageeventplugin', NULL, 'enabled', '1', 'bool'),
(4, 'developedbyblockplugin', NULL, 'enabled', '0', 'bool'),
(5, 'developedbyblockplugin', NULL, 'seq', '0', 'int'),
(6, 'developedbyblockplugin', NULL, 'context', '1', 'int'),
(7, 'languagetoggleblockplugin', NULL, 'enabled', '1', 'bool'),
(8, 'languagetoggleblockplugin', NULL, 'seq', '4', 'int'),
(9, 'languagetoggleblockplugin', NULL, 'context', '1', 'int');

-- --------------------------------------------------------

--
-- Table structure for table `presses`
--

CREATE TABLE `presses` (
  `press_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `path` varchar(32) NOT NULL,
  `seq` double NOT NULL DEFAULT '0',
  `primary_locale` varchar(28) NOT NULL,
  `enabled` smallint(6) NOT NULL DEFAULT '1',
  PRIMARY KEY (`press_id`),
  UNIQUE KEY `press_path` (`path`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A list of presses managed by the system.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `press_settings`
--

CREATE TABLE `press_settings` (
  `press_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `press_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text,
  PRIMARY KEY (`press_setting_id`),
  UNIQUE KEY `press_settings_unique` (`press_id`,`locale`,`setting_name`),
  KEY `press_settings_press_id` (`press_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about presses, including localized properties such as policies.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `publications`
--

CREATE TABLE `publications` (
  `publication_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `date_published` date DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `primary_contact_id` bigint(20) DEFAULT NULL,
  `publication_date_type` varchar(32) DEFAULT 'pub',
  `publication_type` varchar(32) DEFAULT 'publication',
  `seq` double NOT NULL DEFAULT '0',
  `series_id` bigint(20) DEFAULT NULL,
  `series_position` varchar(255) DEFAULT NULL,
  `submission_id` bigint(20) NOT NULL,
  `status` smallint(6) NOT NULL DEFAULT '1',
  `url_path` varchar(64) DEFAULT NULL,
  `version` bigint(20) DEFAULT NULL,
  `doi_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`publication_id`),
  KEY `publications_primary_contact_id` (`primary_contact_id`),
  KEY `publications_section_id` (`series_id`),
  KEY `publications_submission_id` (`submission_id`),
  KEY `publications_doi_id` (`doi_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Each publication is one version of a submission.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `publication_categories`
--

CREATE TABLE `publication_categories` (
  `publication_category_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `publication_id` bigint(20) NOT NULL,
  `category_id` bigint(20) NOT NULL,
  PRIMARY KEY (`publication_category_id`),
  UNIQUE KEY `publication_categories_id` (`publication_id`,`category_id`),
  KEY `publication_categories_publication_id` (`publication_id`),
  KEY `publication_categories_category_id` (`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Associates publications (and thus submissions) with categories.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `publication_dates`
--

CREATE TABLE `publication_dates` (
  `publication_date_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `publication_format_id` bigint(20) NOT NULL,
  `role` varchar(40) NOT NULL,
  `date_format` varchar(40) NOT NULL,
  `date` varchar(255) NOT NULL,
  PRIMARY KEY (`publication_date_id`),
  KEY `publication_dates_publication_format_id` (`publication_format_id`),
  KEY `format_publication_dates_pkey` (`publication_date_id`,`publication_format_id`,`role`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='ONIX publication dates for publication formats.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `publication_formats`
--

CREATE TABLE `publication_formats` (
  `publication_format_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `publication_id` bigint(20) NOT NULL,
  `physical_format` smallint(6) DEFAULT '1',
  `entry_key` varchar(64) DEFAULT NULL,
  `seq` double NOT NULL DEFAULT '0',
  `file_size` varchar(255) DEFAULT NULL,
  `front_matter` varchar(255) DEFAULT NULL,
  `back_matter` varchar(255) DEFAULT NULL,
  `height` varchar(255) DEFAULT NULL,
  `height_unit_code` varchar(255) DEFAULT NULL,
  `width` varchar(255) DEFAULT NULL,
  `width_unit_code` varchar(255) DEFAULT NULL,
  `thickness` varchar(255) DEFAULT NULL,
  `thickness_unit_code` varchar(255) DEFAULT NULL,
  `weight` varchar(255) DEFAULT NULL,
  `weight_unit_code` varchar(255) DEFAULT NULL,
  `product_composition_code` varchar(255) DEFAULT NULL,
  `product_form_detail_code` varchar(255) DEFAULT NULL,
  `country_manufacture_code` varchar(255) DEFAULT NULL,
  `imprint` varchar(255) DEFAULT NULL,
  `product_availability_code` varchar(255) DEFAULT NULL,
  `technical_protection_code` varchar(255) DEFAULT NULL,
  `returnable_indicator_code` varchar(255) DEFAULT NULL,
  `remote_url` varchar(2047) DEFAULT NULL,
  `url_path` varchar(64) DEFAULT NULL,
  `is_approved` smallint(6) NOT NULL DEFAULT '0',
  `is_available` smallint(6) NOT NULL DEFAULT '0',
  `doi_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`publication_format_id`),
  KEY `publication_formats_publication_id` (`publication_id`),
  KEY `publication_formats_doi_id` (`doi_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Publication formats are representations of a publication in a particular format, e.g. PDF, hardcover, etc. Each publication format may contain many chapters.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `publication_format_settings`
--

CREATE TABLE `publication_format_settings` (
  `publication_format_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `publication_format_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text,
  `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object)',
  PRIMARY KEY (`publication_format_setting_id`),
  UNIQUE KEY `publication_format_settings_unique` (`publication_format_id`,`locale`,`setting_name`),
  KEY `publication_format_id_key` (`publication_format_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about publication formats, including localized properties.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `publication_settings`
--

CREATE TABLE `publication_settings` (
  `publication_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `publication_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  PRIMARY KEY (`publication_setting_id`),
  UNIQUE KEY `publication_settings_unique` (`publication_id`,`locale`,`setting_name`),
  KEY `publication_settings_name_value` (`setting_name`(50),`setting_value`(150))
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about publications, including localized properties such as the title and abstract.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `queries`
--

CREATE TABLE `queries` (
  `query_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `assoc_type` bigint(20) NOT NULL,
  `assoc_id` bigint(20) NOT NULL,
  `stage_id` smallint(6) NOT NULL,
  `seq` double NOT NULL DEFAULT '0',
  `date_posted` datetime DEFAULT NULL,
  `date_modified` datetime DEFAULT NULL,
  `closed` smallint(6) NOT NULL DEFAULT '0',
  PRIMARY KEY (`query_id`),
  KEY `queries_assoc_id` (`assoc_type`,`assoc_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Discussions, usually related to a submission, created by editors, authors and other editorial staff.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `query_participants`
--

CREATE TABLE `query_participants` (
  `query_participant_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `query_id` bigint(20) NOT NULL,
  `user_id` bigint(20) NOT NULL,
  PRIMARY KEY (`query_participant_id`),
  UNIQUE KEY `query_participants_unique` (`query_id`,`user_id`),
  KEY `query_participants_query_id` (`query_id`),
  KEY `query_participants_user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='The users assigned to a discussion.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `queued_payments`
--

CREATE TABLE `queued_payments` (
  `queued_payment_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `date_created` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  `expiry_date` date DEFAULT NULL,
  `payment_data` text,
  PRIMARY KEY (`queued_payment_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A list of queued (unfilled) payments, i.e. payments that have not yet been completed via an online payment system.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `representatives`
--

CREATE TABLE `representatives` (
  `representative_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `role` varchar(40) NOT NULL,
  `representative_id_type` varchar(255) DEFAULT NULL,
  `representative_id_value` varchar(255) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `url` varchar(2047) DEFAULT NULL,
  `is_supplier` smallint(6) NOT NULL DEFAULT '1',
  PRIMARY KEY (`representative_id`),
  KEY `representatives_submission_id` (`submission_id`),
  KEY `format_representatives_pkey` (`representative_id`,`submission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='ONIX representatives for publication formats.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `reviewer_suggestions`
--

CREATE TABLE `reviewer_suggestions` (
  `reviewer_suggestion_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `suggesting_user_id` bigint(20) DEFAULT NULL COMMENT 'The user/author who has made the suggestion',
  `submission_id` bigint(20) NOT NULL COMMENT 'Submission at which the suggestion was made',
  `email` varchar(255) NOT NULL COMMENT 'Suggested reviewer email address',
  `orcid_id` varchar(255) DEFAULT NULL COMMENT 'Suggested reviewer optional Orcid Id',
  `approved_at` timestamp NULL DEFAULT NULL COMMENT 'If and when the suggestion approved to add/invite suggested_reviewer',
  `approver_id` bigint(20) DEFAULT NULL COMMENT 'The user who has approved the suggestion',
  `reviewer_id` bigint(20) DEFAULT NULL COMMENT 'The reviewer who has been added/invited through this suggestion',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`reviewer_suggestion_id`),
  KEY `reviewer_suggestions_suggesting_user_id` (`suggesting_user_id`),
  KEY `reviewer_suggestions_submission_id` (`submission_id`),
  KEY `reviewer_suggestions_approver_id_foreign` (`approver_id`),
  KEY `reviewer_suggestions_reviewer_id_foreign` (`reviewer_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Author suggested reviewers at the submission time' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `reviewer_suggestion_settings`
--

CREATE TABLE `reviewer_suggestion_settings` (
  `reviewer_suggestion_id` bigint(20) NOT NULL COMMENT 'The foreign key mapping of this setting to reviewer_suggestions table',
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  UNIQUE KEY `reviewer_suggestion_settings_unique` (`reviewer_suggestion_id`,`locale`,`setting_name`),
  KEY `reviewer_suggestion_settings_reviewer_suggestion_id` (`reviewer_suggestion_id`),
  KEY `reviewer_suggestion_settings_locale_setting_name_index` (`setting_name`,`locale`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reviewer suggestion settings table to contain multilingual or extra information';

-- --------------------------------------------------------

--
-- Table structure for table `review_assignments`
--

CREATE TABLE `review_assignments` (
  `review_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `reviewer_id` bigint(20) NOT NULL,
  `competing_interests` text,
  `recommendation` smallint(6) DEFAULT NULL,
  `date_assigned` datetime DEFAULT NULL,
  `date_notified` datetime DEFAULT NULL,
  `date_confirmed` datetime DEFAULT NULL,
  `date_completed` datetime DEFAULT NULL,
  `date_considered` datetime DEFAULT NULL,
  `date_acknowledged` datetime DEFAULT NULL,
  `date_due` datetime DEFAULT NULL,
  `date_response_due` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `reminder_was_automatic` smallint(6) NOT NULL DEFAULT '0',
  `declined` smallint(6) NOT NULL DEFAULT '0',
  `cancelled` smallint(6) NOT NULL DEFAULT '0',
  `date_cancelled` datetime DEFAULT NULL,
  `date_rated` datetime DEFAULT NULL,
  `date_reminded` datetime DEFAULT NULL,
  `quality` smallint(6) DEFAULT NULL,
  `review_round_id` bigint(20) NOT NULL,
  `stage_id` smallint(6) NOT NULL,
  `review_method` smallint(6) NOT NULL DEFAULT '1',
  `round` smallint(6) NOT NULL DEFAULT '1',
  `step` smallint(6) NOT NULL DEFAULT '1',
  `review_form_id` bigint(20) DEFAULT NULL,
  `considered` smallint(6) DEFAULT NULL,
  `request_resent` smallint(6) NOT NULL DEFAULT '0',
  PRIMARY KEY (`review_id`),
  KEY `review_assignments_submission_id` (`submission_id`),
  KEY `review_assignments_reviewer_id` (`reviewer_id`),
  KEY `review_assignment_reviewer_round` (`review_round_id`,`reviewer_id`),
  KEY `review_assignments_form_id` (`review_form_id`),
  KEY `review_assignments_reviewer_review` (`reviewer_id`,`review_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data about peer review assignments for all submissions.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `review_assignment_settings`
--

CREATE TABLE `review_assignment_settings` (
  `review_assignment_settings_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary key.',
  `review_id` bigint(20) NOT NULL COMMENT 'Foreign key referencing record in review_assignments table',
  `locale` varchar(28) DEFAULT NULL COMMENT 'Locale key.',
  `setting_name` varchar(255) NOT NULL COMMENT 'Name of settings record.',
  `setting_value` mediumtext COMMENT 'Settings value.',
  PRIMARY KEY (`review_assignment_settings_id`),
  UNIQUE KEY `review_assignment_settings_unique` (`review_id`,`locale`,`setting_name`),
  KEY `review_assignment_settings_review_id` (`review_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `review_files`
--

CREATE TABLE `review_files` (
  `review_file_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `review_id` bigint(20) NOT NULL,
  `submission_file_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`review_file_id`),
  UNIQUE KEY `review_files_unique` (`review_id`,`submission_file_id`),
  KEY `review_files_review_id` (`review_id`),
  KEY `review_files_submission_file_id` (`submission_file_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A list of the submission files made available to each assigned reviewer.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `review_forms`
--

CREATE TABLE `review_forms` (
  `review_form_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `assoc_type` bigint(20) NOT NULL,
  `assoc_id` bigint(20) NOT NULL,
  `seq` double DEFAULT NULL,
  `is_active` smallint(6) DEFAULT NULL,
  PRIMARY KEY (`review_form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review forms provide custom templates for peer reviews with several types of questions.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `review_form_elements`
--

CREATE TABLE `review_form_elements` (
  `review_form_element_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `review_form_id` bigint(20) NOT NULL,
  `seq` double DEFAULT NULL,
  `element_type` bigint(20) DEFAULT NULL,
  `required` smallint(6) DEFAULT NULL,
  `included` smallint(6) DEFAULT NULL,
  PRIMARY KEY (`review_form_element_id`),
  KEY `review_form_elements_review_form_id` (`review_form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Each review form element represents a single question on a review form.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `review_form_element_settings`
--

CREATE TABLE `review_form_element_settings` (
  `review_form_element_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `review_form_element_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  `setting_type` varchar(6) NOT NULL,
  PRIMARY KEY (`review_form_element_setting_id`),
  UNIQUE KEY `review_form_element_settings_unique` (`review_form_element_id`,`locale`,`setting_name`),
  KEY `review_form_element_settings_review_form_element_id` (`review_form_element_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about review form elements, including localized content such as question text.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `review_form_responses`
--

CREATE TABLE `review_form_responses` (
  `review_form_response_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `review_form_element_id` bigint(20) NOT NULL,
  `review_id` bigint(20) NOT NULL,
  `response_type` varchar(6) DEFAULT NULL,
  `response_value` text,
  PRIMARY KEY (`review_form_response_id`),
  KEY `review_form_responses_review_form_element_id` (`review_form_element_id`),
  KEY `review_form_responses_review_id` (`review_id`),
  KEY `review_form_responses_unique` (`review_form_element_id`,`review_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Each review form response records a reviewer''s answer to a review form element associated with a peer review.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `review_form_settings`
--

CREATE TABLE `review_form_settings` (
  `review_form_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `review_form_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  `setting_type` varchar(6) NOT NULL,
  PRIMARY KEY (`review_form_setting_id`),
  UNIQUE KEY `review_form_settings_unique` (`review_form_id`,`locale`,`setting_name`),
  KEY `review_form_settings_review_form_id` (`review_form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about review forms, including localized content such as names.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `review_rounds`
--

CREATE TABLE `review_rounds` (
  `review_round_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `stage_id` bigint(20) DEFAULT NULL,
  `round` smallint(6) NOT NULL,
  `review_revision` bigint(20) DEFAULT NULL,
  `status` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`review_round_id`),
  UNIQUE KEY `review_rounds_submission_id_stage_id_round_pkey` (`submission_id`,`stage_id`,`round`),
  KEY `review_rounds_submission_id` (`submission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Peer review assignments are organized into multiple rounds on a submission.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `review_round_files`
--

CREATE TABLE `review_round_files` (
  `review_round_file_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `review_round_id` bigint(20) NOT NULL,
  `stage_id` smallint(6) NOT NULL,
  `submission_file_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`review_round_file_id`),
  UNIQUE KEY `review_round_files_unique` (`submission_id`,`review_round_id`,`submission_file_id`),
  KEY `review_round_files_submission_id` (`submission_id`),
  KEY `review_round_files_review_round_id` (`review_round_id`),
  KEY `review_round_files_submission_file_id` (`submission_file_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Records the files made available to reviewers for a round of reviews. These can be further customized on a per review basis with review_files.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `rors`
--

CREATE TABLE `rors` (
  `ror_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `ror` varchar(255) NOT NULL,
  `display_locale` varchar(28) NOT NULL,
  `is_active` smallint(6) NOT NULL DEFAULT '1',
  `search_phrase` mediumtext,
  PRIMARY KEY (`ror_id`),
  UNIQUE KEY `rors_unique` (`ror`),
  KEY `rors_display_locale` (`display_locale`),
  KEY `rors_is_active` (`is_active`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COMMENT='Ror registry dataset cache' AUTO_INCREMENT=124883 ;

--
-- Dumping data for table `rors`
--

INSERT INTO `rors` VALUES
(1, 'https://ror.org/04ttjf776', 'en', 1, 'https://ror.org/04ttjf776 RMIT University'),
(2, 'https://ror.org/023q4bk22', 'en', 1, 'https://ror.org/023q4bk22 Central Queensland University'),
(3, 'https://ror.org/006jxzx88', 'en', 1, 'https://ror.org/006jxzx88 Bond University'),
(4, 'https://ror.org/00wfvh315', 'en', 1, 'https://ror.org/00wfvh315 Charles Sturt University'),
(5, 'https://ror.org/00nx6aa03', 'en', 1, 'https://ror.org/00nx6aa03 Mater Research'),
(6, 'https://ror.org/046fa4y88', 'en', 1, 'https://ror.org/046fa4y88 The Heart Research Institute'),
(7, 'https://ror.org/02d439m40', 'en', 1, 'https://ror.org/02d439m40 University Mental Health Research Institute'),
(8, 'https://ror.org/05m7zw681', 'no_lang_code', 1, 'https://ror.org/05m7zw681 Rio Tinto (United Kingdom)'),
(9, 'https://ror.org/03awtex73', 'no_lang_code', 1, 'https://ror.org/03awtex73 Arup Group (United States)'),
(10, 'https://ror.org/00kv9pj15', 'no_lang_code', 1, 'https://ror.org/00kv9pj15 BT Group (United Kingdom)'),
(11, 'https://ror.org/03mjtdk61', 'en', 1, 'https://ror.org/03mjtdk61 Mater Health Services'),
(12, 'https://ror.org/04yyp8h20', 'no_lang_code', 1, 'https://ror.org/04yyp8h20 Pilkington (United Kingdom)'),
(13, 'https://ror.org/022rkxt86', 'no_lang_code', 1, 'https://ror.org/022rkxt86 Trojan Technologies (Canada)'),
(14, 'https://ror.org/01wddqe20', 'en', 1, 'https://ror.org/01wddqe20 The Alfred Hospital'),
(15, 'https://ror.org/037mpqg03', 'no_lang_code', 1, 'https://ror.org/037mpqg03 Xstrata (United Kingdom)'),
(16, 'https://ror.org/050b31k83', 'en', 1, 'https://ror.org/050b31k83 Hunter New England Local Health District'),
(17, 'https://ror.org/01q8f6705', 'no_lang_code', 1, 'https://ror.org/01q8f6705 BASF (Germany)'),
(18, 'https://ror.org/03ebg0v16', 'en', 1, 'https://ror.org/03ebg0v16 Boys Town'),
(19, 'https://ror.org/041b40q78', 'no_lang_code', 1, 'https://ror.org/041b40q78 Olympus (Australia)'),
(20, 'https://ror.org/04jc0r179', 'no_lang_code', 1, 'https://ror.org/04jc0r179 UK Coal'),
(21, 'https://ror.org/03e8s1d88', 'en', 1, 'https://ror.org/03e8s1d88 Potsdam Institute for Climate Impact Research Potsdam-Institut für Klimafolgenforschung'),
(22, 'https://ror.org/03fs4aq04', 'en', 1, 'https://ror.org/03fs4aq04 Institute of Fundamental Technological Research Instytut Podstawowych Problemów Techniki'),
(23, 'https://ror.org/04zgvy449', 'no_lang_code', 1, 'https://ror.org/04zgvy449 PSA Peugeot Citroën (France)'),
(24, 'https://ror.org/02vwnat91', 'en', 1, 'https://ror.org/02vwnat91 London South Bank University'),
(25, 'https://ror.org/020268t49', 'de', 1, 'https://ror.org/020268t49 Papiertechnische Stiftung'),
(26, 'https://ror.org/0249v7n71', 'en', 1, 'https://ror.org/0249v7n71 Institute for Computer Science and Control Magyar Tudományos Akadémia Számítástechnikai és Automatizálási Kutatóintézete'),
(27, 'https://ror.org/037m6e306', 'no_lang_code', 1, 'https://ror.org/037m6e306 Pera (United Kingdom)'),
(28, 'https://ror.org/04v98kq37', 'no_lang_code', 1, 'https://ror.org/04v98kq37 Renault (France)'),
(29, 'https://ror.org/00f1xkb20', 'no_lang_code', 1, 'https://ror.org/00f1xkb20 Robosoft (France)'),
(30, 'https://ror.org/017ph0934', 'en', 1, 'https://ror.org/017ph0934 Ulusal ve Uluslararası Ekonomi Üniversitesi University of National and World Economy Университет за национално и световно стопанство'),
(31, 'https://ror.org/01ypwfg63', 'no_lang_code', 1, 'https://ror.org/01ypwfg63 Ecofys (Netherlands)'),
(32, 'https://ror.org/008x57b05', 'en', 1, 'https://ror.org/008x57b05 Universiteit Antwerpen University of Antwerp Universität Antwerpen Université d''Anvers'),
(33, 'https://ror.org/02550n020', 'en', 1, 'https://ror.org/02550n020 European Synchrotron Radiation Facility'),
(34, 'https://ror.org/053bqv655', 'no_lang_code', 1, 'https://ror.org/053bqv655 STMicroelectronics (Italy)'),
(35, 'https://ror.org/01nn35n25', 'en', 1, 'https://ror.org/01nn35n25 Institute of Accelerating Systems and Applications Ινστιτούτο Επιταχυντικών Συστημάτων και Εφαρμογών'),
(36, 'https://ror.org/04zsytt76', 'en', 1, 'https://ror.org/04zsytt76 Wise & Munro Learning Research'),
(37, 'https://ror.org/031bsb921', 'en', 1, 'https://ror.org/031bsb921 University of Mannheim Universität Mannheim'),
(38, 'https://ror.org/01t0n3b84', 'it', 1, 'https://ror.org/01t0n3b84 Consorzio Pisa Ricerche'),
(39, 'https://ror.org/034fmtr90', 'en', 1, 'https://ror.org/034fmtr90 Empirica. Gesellschaft für Kommunikations- und Technologieforschung empirica - Communication and Technology Research'),
(40, 'https://ror.org/05b6ypc36', 'no_lang_code', 1, 'https://ror.org/05b6ypc36 Volvo (Sweden) Volvokoncernen'),
(41, 'https://ror.org/04d4dxm04', 'fr', 1, 'https://ror.org/04d4dxm04 Société de Mathématiques Appliquées et de Sciences Humaines'),
(42, 'https://ror.org/0454vek02', 'no_lang_code', 1, 'https://ror.org/0454vek02 National Society of French Railways Société Nationale des Chemins de Fer Français (France)'),
(43, 'https://ror.org/05re2b915', 'en', 1, 'https://ror.org/05re2b915 European Road Transport Telematics Implementation Co-Ordination'),
(44, 'https://ror.org/00qt5ka73', 'no_lang_code', 1, 'https://ror.org/00qt5ka73 Arttic (France)'),
(45, 'https://ror.org/035gy9016', 'no_lang_code', 1, 'https://ror.org/035gy9016 Tecnatom (Spain)'),
(46, 'https://ror.org/04vfyfx73', 'no_lang_code', 1, 'https://ror.org/04vfyfx73 Teer Coatings (United Kingdom)'),
(47, 'https://ror.org/033vryh36', 'es', 1, 'https://ror.org/033vryh36 Tekniker'),
(48, 'https://ror.org/042e7c302', 'fr', 1, 'https://ror.org/042e7c302 Multitel'),
(49, 'https://ror.org/02vbxt202', 'no_lang_code', 1, 'https://ror.org/02vbxt202 ThyssenKrupp (Germany)'),
(50, 'https://ror.org/01c74sd89', 'no_lang_code', 1, 'https://ror.org/01c74sd89 STMicroelectronics (France)'),
(51, 'https://ror.org/02q8h2f47', 'fr', 1, 'https://ror.org/02q8h2f47 Institut Technologique Forêt Cellulose Bois-Construction Ameublement'),
(52, 'https://ror.org/030wyr187', 'en', 1, 'https://ror.org/030wyr187 Finnish Institute of Occupational Health'),
(53, 'https://ror.org/023z51242', 'en', 1, 'https://ror.org/023z51242 Enterprise Ireland'),
(54, 'https://ror.org/0261g6j35', 'en', 1, 'https://ror.org/0261g6j35 Chaudhary Charan Singh Haryana Agricultural University चौधरी चरण सिंह हरियाणा कृषि विश्वविद्यालय சௌதரி சரண் சிங் அரியானா வேளாண்மை பல்கலைக்கழகம்'),
(55, 'https://ror.org/02kta5139', 'es', 1, 'https://ror.org/02kta5139 Metropolitan Autonomous University Universidad Autónoma Metropolitana'),
(56, 'https://ror.org/00cb9w016', 'en', 1, 'https://ror.org/00cb9w016 Ain Shams University جامعة عين شمس'),
(57, 'https://ror.org/01jm19r53', 'no_lang_code', 1, 'https://ror.org/01jm19r53 TuTech Innovation (Germany)'),
(58, 'https://ror.org/006rhxn50', 'no_lang_code', 1, 'https://ror.org/006rhxn50 FORCE Technology (Denmark)'),
(59, 'https://ror.org/00bxsm637', 'no_lang_code', 1, 'https://ror.org/00bxsm637 MTU Aero Engines (Germany)'),
(60, 'https://ror.org/05564r514', 'en', 1, 'https://ror.org/05564r514 Association of European Renewable Energy Research Centres'),
(61, 'https://ror.org/02hbhxa68', 'no_lang_code', 1, 'https://ror.org/02hbhxa68 Airbus (United Kingdom)'),
(62, 'https://ror.org/01r4bn552', 'en', 1, 'https://ror.org/01r4bn552 Institut von karman de dynamique des fluides Von Karman Institut für Strömungsmechanik Von Karman Institute for Fluid Dynamics'),
(63, 'https://ror.org/003vfy751', 'fr', 1, 'https://ror.org/003vfy751 University of Burundi Université du Burundi'),
(64, 'https://ror.org/03q21mh05', 'en', 1, 'https://ror.org/03q21mh05 Cairo University Université du Caire جامعة القاهرة'),
(65, 'https://ror.org/058s98e36', 'en', 1, 'https://ror.org/058s98e36 Promotion of Operational Links With Integrated Services'),
(66, 'https://ror.org/04je6yw13', 'en', 1, 'https://ror.org/04je6yw13 Cheikh Anta Diop University Université Cheikh Anta Diop'),
(67, 'https://ror.org/05n8n9378', 'en', 1, 'https://ror.org/05n8n9378 Eduardo Mondlane University Universidade Eduardo Mondlane'),
(68, 'https://ror.org/0080acb59', 'en', 1, 'https://ror.org/0080acb59 John Radcliffe Hospital'),
(69, 'https://ror.org/0176yjw32', 'pt', 1, 'https://ror.org/0176yjw32 Federal University of Minas Gerais Universidade Federal de Minas Gerais Université fédérale du minas gerais'),
(70, 'https://ror.org/049bdss47', 'en', 1, 'https://ror.org/049bdss47 Joanneum Research Joanneum Research Forschungsgesellschaft mbH'),
(71, 'https://ror.org/03bqt8z64', 'no_lang_code', 1, 'https://ror.org/03bqt8z64 National Institute of Technology'),
(72, 'https://ror.org/050y0ba80', 'no_lang_code', 1, 'https://ror.org/050y0ba80 D''Appolonia (Italy)'),
(73, 'https://ror.org/02gpdzc63', 'no_lang_code', 1, 'https://ror.org/02gpdzc63 Labor (Italy)'),
(74, 'https://ror.org/00a0jsq62', 'en', 1, 'https://ror.org/00a0jsq62 London School of Hygiene & Tropical Medicine'),
(75, 'https://ror.org/050w2g362', 'no_lang_code', 1, 'https://ror.org/050w2g362 Inovamais'),
(76, 'https://ror.org/006x15235', 'en', 1, 'https://ror.org/006x15235 Instituto Nacional de Engenharia, Tecnologia e Inovação National Institute of Engineering, Technology and Innovation'),
(77, 'https://ror.org/04gqx4x78', 'it', 1, 'https://ror.org/04gqx4x78 Campus Bio-Medico University Università Campus Bio-Medico'),
(78, 'https://ror.org/023bq8521', 'en', 1, 'https://ror.org/023bq8521 Saint Petersburg State Electrotechnical University Санкт-Петербургский государственный электротехнический университет'),
(79, 'https://ror.org/0542q3127', 'en', 1, 'https://ror.org/0542q3127 Lviv Polytechnic National University Politechnika Lwowska Национальный университет «Львовская политехника» Національний університет «Львівська політехніка»'),
(80, 'https://ror.org/00a99v816', 'no_lang_code', 1, 'https://ror.org/00a99v816 GABO:mi'),
(81, 'https://ror.org/052fdp564', 'no_lang_code', 1, 'https://ror.org/052fdp564 Enel (Italy)'),
(82, 'https://ror.org/04aaeds92', 'no_lang_code', 1, 'https://ror.org/04aaeds92 Israel Aerospace Industries (Israel)'),
(83, 'https://ror.org/04vtx5s55', 'en', 1, 'https://ror.org/04vtx5s55 University of Malawi'),
(84, 'https://ror.org/02436cs38', 'no_lang_code', 1, 'https://ror.org/02436cs38 Unilever (Netherlands)'),
(85, 'https://ror.org/04s4j9e43', 'en', 1, 'https://ror.org/04s4j9e43 Omar Bongo University Université Omar Bongo'),
(86, 'https://ror.org/03tbh6y23', 'en', 1, 'https://ror.org/03tbh6y23 University of the Philippines Diliman'),
(87, 'https://ror.org/030s54078', 'en', 1, 'https://ror.org/030s54078 University of the Philippines Los Baños'),
(88, 'https://ror.org/02ahxbh87', 'en', 1, 'https://ror.org/02ahxbh87 Biomedical Primate Research Centre'),
(89, 'https://ror.org/038j9sn30', 'en', 1, 'https://ror.org/038j9sn30 Shanghai Institute of Hypertension'),
(90, 'https://ror.org/05rw9t746', 'en', 1, 'https://ror.org/05rw9t746 IBM Research - Haifa'),
(91, 'https://ror.org/04xraxn18', 'en', 1, 'https://ror.org/04xraxn18 Fondazione Telethon Telethon Foundation'),
(92, 'https://ror.org/0046mja08', 'en', 1, 'https://ror.org/0046mja08 An-Najah National University جامعة النجاح الوطنية'),
(93, 'https://ror.org/04nbe0v26', 'en', 1, 'https://ror.org/04nbe0v26 Institute of Studies for the Integration of Systems l’Istituto di Studi per l’Integrazione dei Sistemi'),
(94, 'https://ror.org/05nv2rz39', 'en', 1, 'https://ror.org/05nv2rz39 University of Eswatini'),
(95, 'https://ror.org/02jqtg033', 'en', 1, 'https://ror.org/02jqtg033 Institute for Energy Technology'),
(96, 'https://ror.org/01jk32r56', 'no_lang_code', 1, 'https://ror.org/01jk32r56 Sirehna'),
(97, 'https://ror.org/00wc07928', 'en', 1, 'https://ror.org/00wc07928 University of Lomé Université de Lomé'),
(98, 'https://ror.org/001b4cb05', 'en', 1, 'https://ror.org/001b4cb05 National University of Trujillo Universidad Nacional de Trujillo'),
(99, 'https://ror.org/00nxna028', 'en', 1, 'https://ror.org/00nxna028 HR Wallingford'),
(100, 'https://ror.org/04ycpbx82', 'en', 1, 'https://ror.org/04ycpbx82 Prifysgol Westminster University of Westminster'),
(101, 'https://ror.org/03fkc8c64', 'en', 1, 'https://ror.org/03fkc8c64 University of the West Indies'),
(102, 'https://ror.org/02qnsw591', 'en', 1, 'https://ror.org/02qnsw591 Centre for European Economic Research Zentrum für Europäische Wirtschaftsforschung'),
(103, 'https://ror.org/014x8q810', 'de', 1, 'https://ror.org/014x8q810 Centre for Solar Energy and Hydrogen Research Baden-Württemberg Zentrum für Sonnenenergie- und Wasserstoff-Forschung Baden-Württemberg'),
(104, 'https://ror.org/01nhzsw25', 'fr', 1, 'https://ror.org/01nhzsw25 Hydro-Québec'),
(105, 'https://ror.org/04838xh83', 'es', 1, 'https://ror.org/04838xh83 Empresarios Agrupados'),
(106, 'https://ror.org/024xs2z82', 'no_lang_code', 1, 'https://ror.org/024xs2z82 ArcelorMittal (France)'),
(107, 'https://ror.org/00tnppw48', 'en', 1, 'https://ror.org/00tnppw48 Adran yr Amgylchedd, Bwyd a Materion Gwledig Department for Environment Food and Rural Affairs'),
(108, 'https://ror.org/01je6q363', 'fr', 1, 'https://ror.org/01je6q363 Centre Technique Industriel De La Construction Metallique'),
(109, 'https://ror.org/02fv8hj62', 'es', 1, 'https://ror.org/02fv8hj62 Tecnalia'),
(110, 'https://ror.org/05m5z4f19', 'en', 1, 'https://ror.org/05m5z4f19 Steel Construction Institute'),
(111, 'https://ror.org/04kgqpx54', 'no_lang_code', 1, 'https://ror.org/04kgqpx54 Voestalpine (Austria)'),
(112, 'https://ror.org/042bdnm87', 'no_lang_code', 1, 'https://ror.org/042bdnm87 Svenskt Stål (Finland) Swedish Steel'),
(113, 'https://ror.org/03bj8zh59', 'no_lang_code', 1, 'https://ror.org/03bj8zh59 Tata Steel (United Kingdom)'),
(114, 'https://ror.org/022wqqf69', 'es', 1, 'https://ror.org/022wqqf69 Centre for Technical Research and Studies Centro de Estudios e Investigaciones Técnicas de Gipuzkoa'),
(115, 'https://ror.org/047vb2x72', 'no_lang_code', 1, 'https://ror.org/047vb2x72 MATIMOP'),
(116, 'https://ror.org/02npppw10', 'no_lang_code', 1, 'https://ror.org/02npppw10 BMT Group (United Kingdom)'),
(117, 'https://ror.org/00jzexr10', 'en', 1, 'https://ror.org/00jzexr10 Astrakhan State Technical University Астраханский государственный технический университет'),
(118, 'https://ror.org/00yyp2526', 'en', 1, 'https://ror.org/00yyp2526 Silsoe Research Institute'),
(119, 'https://ror.org/0287e5797', 'no_lang_code', 1, 'https://ror.org/0287e5797 Siemens (United Kingdom)'),
(120, 'https://ror.org/03dke3h47', 'en', 1, 'https://ror.org/03dke3h47 Association of Science-Technology Centers'),
(121, 'https://ror.org/04mqy3p58', 'pt', 1, 'https://ror.org/04mqy3p58 Instituto de Engenharia de Sistemas e Computadores Investigação e Desenvolvimento'),
(122, 'https://ror.org/006k2kk72', 'en', 1, 'https://ror.org/006k2kk72 Düsseldorf University Hospital Universitätsklinikum Düsseldorf'),
(123, 'https://ror.org/055zmrh94', 'en', 1, 'https://ror.org/055zmrh94 John Innes Centre'),
(124, 'https://ror.org/04zb59n70', 'en', 1, 'https://ror.org/04zb59n70 Leibniz Institute for Solid State and Materials Research Leibniz-Institut für Festkörper- und Werkstoffforschung Dresden'),
(125, 'https://ror.org/02tc32w13', 'en', 1, 'https://ror.org/02tc32w13 Cumann Ollscoileanna Éireann Irish Universities Association'),
(126, 'https://ror.org/02pagex14', 'en', 1, 'https://ror.org/02pagex14 Archimedes Foundation'),
(127, 'https://ror.org/01xnwqx93', 'en', 1, 'https://ror.org/01xnwqx93 University Hospital Bonn Universitätsklinikum Bonn'),
(128, 'https://ror.org/043rjaw23', 'no_lang_code', 1, 'https://ror.org/043rjaw23 Profactor (Austria)'),
(129, 'https://ror.org/02qsqdv65', 'no_lang_code', 1, 'https://ror.org/02qsqdv65 Alstom (United Kingdom)'),
(130, 'https://ror.org/023znxa73', 'en', 1, 'https://ror.org/023znxa73 St Petersburg University Санкт-Петербургский государственный университет'),
(131, 'https://ror.org/02e8hzf44', 'en', 1, 'https://ror.org/02e8hzf44 Helsinki University Hospital'),
(132, 'https://ror.org/02s6w8y22', 'en', 1, 'https://ror.org/02s6w8y22 University of Bamako Université de Bamako'),
(133, 'https://ror.org/01h89k731', 'no_lang_code', 1, 'https://ror.org/01h89k731 TXT e-solutions (Italy)'),
(134, 'https://ror.org/05ryv0s68', 'en', 1, 'https://ror.org/05ryv0s68 Euresearch Association'),
(135, 'https://ror.org/05sep9w93', 'es', 1, 'https://ror.org/05sep9w93 Instituto Tecnológico de Aragón'),
(136, 'https://ror.org/022em3k58', 'en', 1, 'https://ror.org/022em3k58 De Duve Instituut L''Institut de Duve de Duve Institute'),
(137, 'https://ror.org/0284gmm72', 'fr', 1, 'https://ror.org/0284gmm72 Cité Internationale Universitaire de Paris'),
(138, 'https://ror.org/04esata81', 'en', 1, 'https://ror.org/04esata81 European Science Foundation'),
(139, 'https://ror.org/02cqgeg62', 'no_lang_code', 1, 'https://ror.org/02cqgeg62 INRA Transfert (France)'),
(140, 'https://ror.org/03bvx5w91', 'it', 1, 'https://ror.org/03bvx5w91 Fondazione Eni Enrico Mattei'),
(141, 'https://ror.org/0204pdj19', 'en', 1, 'https://ror.org/0204pdj19 Institute For European Environmental Policy'),
(142, 'https://ror.org/027tvqf96', 'no_lang_code', 1, 'https://ror.org/027tvqf96 CAS Software (Germany)'),
(143, 'https://ror.org/04qcftj32', 'en', 1, 'https://ror.org/04qcftj32 UK Health and Environment Research Institute'),
(144, 'https://ror.org/01cqx0m58', 'en', 1, 'https://ror.org/01cqx0m58 Centro Italiano Ricerche Aerospaziali Italian Aerospace Research Centre'),
(145, 'https://ror.org/04grcvp20', 'no_lang_code', 1, 'https://ror.org/04grcvp20 Ingenieria Y Economia Del Transporte'),
(146, 'https://ror.org/04pd9b824', 'no_lang_code', 1, 'https://ror.org/04pd9b824 Doosan (United Kingdom)'),
(147, 'https://ror.org/05jeza980', 'no_lang_code', 1, 'https://ror.org/05jeza980 Rolls-Royce (Germany)'),
(148, 'https://ror.org/010jx2260', 'en', 1, 'https://ror.org/010jx2260 National Institute of Agricultural Botany'),
(149, 'https://ror.org/01cqmqj90', 'en', 1, 'https://ror.org/01cqmqj90 Hadassah Medical Center مركز هداسا الطبي'),
(150, 'https://ror.org/02ejsvn42', 'en', 1, 'https://ror.org/02ejsvn42 Comité Européen de Normalisation European Committee for Standardization'),
(151, 'https://ror.org/00582g326', 'en', 1, 'https://ror.org/00582g326 Indian Institute of Technology Roorkee भारतीय प्रौद्योगिकी संस्थान रुड़की இந்திய தொழில்நுட்பக் கழகம் ரூர்க்கி ఇండియన్ ఇన్స్టిట్యూట్ ఆఫ్ టెక్నాలజీ రూర్కీ ഇന്ത്യൻ ഇൻസ്റ്റിറ്റ്യൂട്ട് ഓഫ് ടെക്നോളജി റൂർക്കി'),
(152, 'https://ror.org/03dsc8d33', 'no_lang_code', 1, 'https://ror.org/03dsc8d33 Systems, Applications & Products in Data Processing (Germany)'),
(153, 'https://ror.org/01nthrq77', 'es', 1, 'https://ror.org/01nthrq77 Instituto Tecnologico Del Embalaje, Transporte Y Logistica'),
(154, 'https://ror.org/03vnshb93', 'en', 1, 'https://ror.org/03vnshb93 Transport for London'),
(155, 'https://ror.org/0108e1t34', 'en', 1, 'https://ror.org/0108e1t34 Applied Research and Communications Fund'),
(156, 'https://ror.org/05efsr055', 'en', 1, 'https://ror.org/05efsr055 Estonian Interuniversity Population Research Centre'),
(157, 'https://ror.org/00knyd990', 'en', 1, 'https://ror.org/00knyd990 UK Intelligent Systems Research Institute'),
(158, 'https://ror.org/05jxj5k51', 'no_lang_code', 1, 'https://ror.org/05jxj5k51 Eesti Innovatsiooni Instituut'),
(159, 'https://ror.org/02s0xcm55', 'it', 1, 'https://ror.org/02s0xcm55 Agency for the Promotion of European Research Agenzia per la Promozione della Ricerca Europea'),
(160, 'https://ror.org/04f4syj68', 'it', 1, 'https://ror.org/04f4syj68 Polo Universitario Città di Prato'),
(161, 'https://ror.org/02wdp5k87', 'no_lang_code', 1, 'https://ror.org/02wdp5k87 Keskuslaboratorio'),
(162, 'https://ror.org/04cnfrn26', 'en', 1, 'https://ror.org/04cnfrn26 University of the Arts London'),
(163, 'https://ror.org/03px4ez74', 'en', 1, 'https://ror.org/03px4ez74 Zoological Society of London'),
(164, 'https://ror.org/05rtvan68', 'en', 1, 'https://ror.org/05rtvan68 Royal University of Phnom Penh សាកលវិទ្យាល័យភូមិន្ទភ្នំពេញ'),
(165, 'https://ror.org/019621n74', 'en', 1, 'https://ror.org/019621n74 Public Health Institute'),
(166, 'https://ror.org/04v403p80', 'en', 1, 'https://ror.org/04v403p80 Consorzio Interuniversitario Risonanze Magnetiche di Metallo Proteine Interuniversity Consortium for Magnetic Resonance'),
(167, 'https://ror.org/02m11x738', 'en', 1, 'https://ror.org/02m11x738 Furtwangen University Hochschule Furtwangen'),
(168, 'https://ror.org/00r2gde63', 'en', 1, 'https://ror.org/00r2gde63 Ascamm Technologic Center Centro Tecnológico Ascamm'),
(169, 'https://ror.org/033t8gt11', 'en', 1, 'https://ror.org/033t8gt11 University of Forestry Лесотехнически университет'),
(170, 'https://ror.org/03zrwm897', 'en', 1, 'https://ror.org/03zrwm897 Technical University of Varna Технически университет - Варна'),
(171, 'https://ror.org/00c051916', 'fr', 1, 'https://ror.org/00c051916 Centre Technique des Industries Mécaniques Technical Centre for Mechanical Industry'),
(172, 'https://ror.org/0238gz740', 'en', 1, 'https://ror.org/0238gz740 Institute for Theoretical and Experimental Physics Институт теоретической и экспериментальной физики'),
(173, 'https://ror.org/051qv3667', 'no_lang_code', 1, 'https://ror.org/051qv3667 Applus+ IDIADA (Spain) Institut d''Investigació Aplicada de l''Automòbil'),
(174, 'https://ror.org/001c9fg13', 'ro', 1, 'https://ror.org/001c9fg13 Unitatea Executiva Pentru Finantarea Invatamantului Superior Si A Cercetarii Stiintifice Universitare'),
(175, 'https://ror.org/006c1jc70', 'en', 1, 'https://ror.org/006c1jc70 UK Material Technology Research Institute'),
(176, 'https://ror.org/00fbafs03', 'no_lang_code', 1, 'https://ror.org/00fbafs03 MBN Nanomaterialia (Italy)'),
(177, 'https://ror.org/04evcxq23', 'it', 1, 'https://ror.org/04evcxq23 Consorzio Nazionale Interuniversitario per i Trasporti e la Logistica'),
(178, 'https://ror.org/026452768', 'no_lang_code', 1, 'https://ror.org/026452768 PTV Group (Germany)'),
(179, 'https://ror.org/04svdmv30', 'fr', 1, 'https://ror.org/04svdmv30 The Association of the European Rail Industry, Union des Industries Ferroviaires Européennes'),
(180, 'https://ror.org/000a2sx58', 'en', 1, 'https://ror.org/000a2sx58 Centre for European Policy Studies'),
(181, 'https://ror.org/04ejkkg63', 'en', 1, 'https://ror.org/04ejkkg63 Ecologic Institute'),
(182, 'https://ror.org/04hp86393', 'no_lang_code', 1, 'https://ror.org/04hp86393 National Grid (United Kingdom)'),
(183, 'https://ror.org/00ae33288', 'en', 1, 'https://ror.org/00ae33288 London Metropolitan University'),
(184, 'https://ror.org/017vgxg86', 'no_lang_code', 1, 'https://ror.org/017vgxg86 Ford (Germany)'),
(185, 'https://ror.org/05s7s9x02', 'no_lang_code', 1, 'https://ror.org/05s7s9x02 Lucideon (United Kingdom)'),
(186, 'https://ror.org/00mbaq869', 'en', 1, 'https://ror.org/00mbaq869 Timescape Surveys'),
(187, 'https://ror.org/05k87vq12', 'no_lang_code', 1, 'https://ror.org/05k87vq12 Microsoft Research (United Kingdom)'),
(188, 'https://ror.org/05tkvpg69', 'es', 1, 'https://ror.org/05tkvpg69 Centro Agronomico Tropical de Investigacion y Ensenanza Catie'),
(189, 'https://ror.org/013q2cj53', 'en', 1, 'https://ror.org/013q2cj53 Universeum'),
(190, 'https://ror.org/05g4mtv59', 'no_lang_code', 1, 'https://ror.org/05g4mtv59 Hewlett-Packard (United Kingdom)'),
(191, 'https://ror.org/026vvkz19', 'en', 1, 'https://ror.org/026vvkz19 National Interuniversity Consortium for the Physical Sciences of Matter'),
(192, 'https://ror.org/006kce638', 'es', 1, 'https://ror.org/006kce638 Instituto Tecnológico del Calzado y Conexas'),
(193, 'https://ror.org/051a97h21', 'no_lang_code', 1, 'https://ror.org/051a97h21 National Nuclear Corporation (United Kingdom)'),
(194, 'https://ror.org/01yqewm58', 'en', 1, 'https://ror.org/01yqewm58 Kuban State University Кубанский государственный университет'),
(195, 'https://ror.org/05b45bk66', 'en', 1, 'https://ror.org/05b45bk66 Regional Environmental Center for Central and Eastern Europe'),
(196, 'https://ror.org/00gtcbp88', 'pt', 1, 'https://ror.org/00gtcbp88 Universidade de Pernambuco University of Pernambuco'),
(197, 'https://ror.org/007b9cn27', 'en', 1, 'https://ror.org/007b9cn27 National Polytechnic University of Armenia Հայաստանի ազգային պոլիտեխնիկական համալսարան'),
(198, 'https://ror.org/027b0sp52', 'no_lang_code', 1, 'https://ror.org/027b0sp52 Kema International (Netherlands)'),
(199, 'https://ror.org/01ry6tw68', 'no_lang_code', 1, 'https://ror.org/01ry6tw68 Balance Technology Consulting'),
(200, 'https://ror.org/01818mf51', 'no_lang_code', 1, 'https://ror.org/01818mf51 Messerschmitt-Bölkow-Blohm (Germany)'),
(201, 'https://ror.org/05j0w0e76', 'en', 1, 'https://ror.org/05j0w0e76 American Association For The Advancement of Science Asociación Estadounidense para el Avance de la Ciencia Association américaine pour l''avancement de la science'),
(202, 'https://ror.org/02dgmb809', 'no_lang_code', 1, 'https://ror.org/02dgmb809 Numerical Mechanics Applications International (Belgium)'),
(203, 'https://ror.org/02jk5qe80', 'en', 1, 'https://ror.org/02jk5qe80 Aalborg Universitetshospital Aalborg University Hospital'),
(204, 'https://ror.org/01m484026', 'no_lang_code', 1, 'https://ror.org/01m484026 Smithers Pira'),
(205, 'https://ror.org/00fpw9a48', 'no_lang_code', 1, 'https://ror.org/00fpw9a48 Hamburg Ship Model Basin Hamburgische Schiffbau-Versuchsanstalt (Germany)'),
(206, 'https://ror.org/03xww6m08', 'en', 1, 'https://ror.org/03xww6m08 Nicolae Testemițanu State University of Medicine and Pharmacy Universitatea de Medicină și Farmacie Nicolae Testemițanu din Chișinău Государственный университет медицины и фармакологии имени Николая Тестемицяну'),
(207, 'https://ror.org/005b2mc68', 'no_lang_code', 1, 'https://ror.org/005b2mc68 NEC (United Kingdom)'),
(208, 'https://ror.org/0416m3683', 'de', 1, 'https://ror.org/0416m3683 Institut für Rundfunktechnik'),
(209, 'https://ror.org/02hm3sf87', 'no_lang_code', 1, 'https://ror.org/02hm3sf87 European Institute For Research and Strategic Studies In Telecommunications'),
(210, 'https://ror.org/00m8prc86', 'no_lang_code', 1, 'https://ror.org/00m8prc86 Deutsche Telekom (Germany) German Telecom'),
(211, 'https://ror.org/0167c0661', 'no_lang_code', 1, 'https://ror.org/0167c0661 Exodus (Greece)'),
(212, 'https://ror.org/03v8v5y65', 'it', 1, 'https://ror.org/03v8v5y65 Consorzio Interuniversitario Nazionale per l''Informatica National Interuniversity Consortium for Informatics'),
(213, 'https://ror.org/05bxb3784', 'no_lang_code', 1, 'https://ror.org/05bxb3784 Academia Sinica 中央研究院'),
(214, 'https://ror.org/00pbh0a34', 'en', 1, 'https://ror.org/00pbh0a34 British Museum Yr Amgueddfa Brydeinig'),
(215, 'https://ror.org/01nr6fy72', 'en', 1, 'https://ror.org/01nr6fy72 Ljubljana University Medical Centre'),
(216, 'https://ror.org/01g246z62', 'en', 1, 'https://ror.org/01g246z62 International Union of Railways Union internationale des chemins de fer'),
(217, 'https://ror.org/02fmkev06', 'en', 1, 'https://ror.org/02fmkev06 Building Research Establishment'),
(218, 'https://ror.org/04y28m257', 'no_lang_code', 1, 'https://ror.org/04y28m257 SOLINET'),
(219, 'https://ror.org/02yfanq70', 'en', 1, 'https://ror.org/02yfanq70 International Vaccine Institute'),
(220, 'https://ror.org/01bw9xe44', 'en', 1, 'https://ror.org/01bw9xe44 Academy of Georgofili Accademia dei Georgofili'),
(221, 'https://ror.org/01rb2ev69', 'no_lang_code', 1, 'https://ror.org/01rb2ev69 Inspiralia'),
(222, 'https://ror.org/020k76687', 'no_lang_code', 1, 'https://ror.org/020k76687 Autonomous Operator of Parisian Transports Régie Autonome des Transports Parisiens (France)'),
(223, 'https://ror.org/02yvd4j36', 'en', 1, 'https://ror.org/02yvd4j36 Bundesamt für Strahlenschutz Federal Office for Radiation Protection'),
(224, 'https://ror.org/05kcb8115', 'it', 1, 'https://ror.org/05kcb8115 Consorzio Interuniversitario Per L''Ottimizzazione E La Ricerca Operativa'),
(225, 'https://ror.org/02x91aj62', 'en', 1, 'https://ror.org/02x91aj62 Peter the Great St. Petersburg Polytechnic University Санкт-Петербургский политехнический университет Петра Великого'),
(226, 'https://ror.org/0306jgh11', 'en', 1, 'https://ror.org/0306jgh11 Association of Commonwealth Universities'),
(227, 'https://ror.org/02m82p074', 'no_lang_code', 1, 'https://ror.org/02m82p074 Suez Canal University Université du Canal de Suez جامعة قناة السويس'),
(228, 'https://ror.org/04t6r6d34', 'en', 1, 'https://ror.org/04t6r6d34 International Space University'),
(229, 'https://ror.org/04d5k5771', 'en', 1, 'https://ror.org/04d5k5771 European Institute for Energy Research Europäisches Institut für Energieforschung'),
(230, 'https://ror.org/00ctk8b26', 'en', 1, 'https://ror.org/00ctk8b26 Bristol City Council'),
(231, 'https://ror.org/00f2z7n96', 'en', 1, 'https://ror.org/00f2z7n96 RAND Corporation'),
(232, 'https://ror.org/05ne3s142', 'en', 1, 'https://ror.org/05ne3s142 Saint Petersburg Academic University Санкт-Петербургский академический университет — научно-образовательный центр нанотехнологий'),
(233, 'https://ror.org/05gnna589', 'it', 1, 'https://ror.org/05gnna589 Consorzio Nazionale Interuniversitario per la Nanoelettronica Interuniversity Consortium for Nanoelectronics'),
(234, 'https://ror.org/043071f54', 'en', 1, 'https://ror.org/043071f54 University of Roehampton'),
(235, 'https://ror.org/02kzxd152', 'en', 1, 'https://ror.org/02kzxd152 Medical University Plovdiv Medizinischen Universität Plovdiv Медицински университет - Пловдив'),
(236, 'https://ror.org/03nscjy42', 'no_lang_code', 1, 'https://ror.org/03nscjy42 General Electric (Denmark)'),
(237, 'https://ror.org/04rsexf17', 'no_lang_code', 1, 'https://ror.org/04rsexf17 Stemcell Technologies'),
(238, 'https://ror.org/00944ve71', 'en', 1, 'https://ror.org/00944ve71 National Central University'),
(239, 'https://ror.org/015803449', 'en', 1, 'https://ror.org/015803449 South London and Maudsley NHS Foundation Trust'),
(240, 'https://ror.org/0441cbj57', 'en', 1, 'https://ror.org/0441cbj57 National University of Life and Environmental Sciences of Ukraine Национальный университет биоресурсов и природопользования Національний університет біоресурсів і природокористування України'),
(241, 'https://ror.org/00azwtc53', 'no_lang_code', 1, 'https://ror.org/00azwtc53 Swedish Nuclear Fuel and Waste Management (Sweden)'),
(242, 'https://ror.org/050j2vm64', 'en', 1, 'https://ror.org/050j2vm64 Bangalore University Université de bangalore बंगलौर विश्वविद्यालय बंगळुरू विद्यापीठ பெங்களூர்ப் பல்கலைக்கழகம் బెంగుళూరు విశ్వవిద్యాలయం ಬೆಂಗಳೂರು ವಿಶ್ವವಿದ್ಯಾಲಯ'),
(243, 'https://ror.org/00zdnkx70', 'en', 1, 'https://ror.org/00zdnkx70 National Tsing Hua University'),
(244, 'https://ror.org/02e16g702', 'en', 1, 'https://ror.org/02e16g702 Hokkaido University 北海道大学'),
(245, 'https://ror.org/04g3dn724', 'en', 1, 'https://ror.org/04g3dn724 Massachusetts Eye and Ear Infirmary'),
(246, 'https://ror.org/03mmk1j33', 'no_lang_code', 1, 'https://ror.org/03mmk1j33 Blackberry (Canada)'),
(247, 'https://ror.org/047yk3s18', 'en', 1, 'https://ror.org/047yk3s18 Catholic University of America Universidad Católica de América Université catholique d''amérique'),
(248, 'https://ror.org/03645mz20', 'nl', 1, 'https://ror.org/03645mz20 Stichting Technasium'),
(249, 'https://ror.org/05qk3dq04', 'en', 1, 'https://ror.org/05qk3dq04 Malta Council for Science and Technology'),
(250, 'https://ror.org/02gar4w80', 'en', 1, 'https://ror.org/02gar4w80 University Library in Bratislava Univerzitná knižnica v Bratislave'),
(251, 'https://ror.org/02d0kps43', 'de', 1, 'https://ror.org/02d0kps43 UMIT - Private Universität für Gesundheitswissenschaften, Medizinische Informatik und Technik'),
(252, 'https://ror.org/05dkqa017', 'en', 1, 'https://ror.org/05dkqa017 Hochschule Kaiserslautern University of Applied Sciences Kaiserslautern'),
(253, 'https://ror.org/01qt0gj86', 'lt', 1, 'https://ror.org/01qt0gj86 Lietuvos Bioetikos Komitetas Lithuanian Bioethics Committee'),
(254, 'https://ror.org/01msdga41', 'no_lang_code', 1, 'https://ror.org/01msdga41 Dornier Flugzeugwerke (Germany)'),
(255, 'https://ror.org/02xyqwh78', 'no_lang_code', 1, 'https://ror.org/02xyqwh78 FEV (Germany)'),
(256, 'https://ror.org/040d1yx23', 'no_lang_code', 1, 'https://ror.org/040d1yx23 Senvion SE (Germany)'),
(257, 'https://ror.org/00q09pe49', 'en', 1, 'https://ror.org/00q09pe49 National Taiwan University of Science and Technology'),
(258, 'https://ror.org/05vf56z40', 'en', 1, 'https://ror.org/05vf56z40 University of Tehran دانشگاه تهران'),
(259, 'https://ror.org/00k1crd82', 'en', 1, 'https://ror.org/00k1crd82 Museum of Science'),
(260, 'https://ror.org/03bwf4y78', 'sk', 1, 'https://ror.org/03bwf4y78 Slovak National Library Slovenska Narodna Kniznica Slovenská národná knižnica'),
(261, 'https://ror.org/01x21tj82', 'no_lang_code', 1, 'https://ror.org/01x21tj82 Microsoft (Netherlands)'),
(262, 'https://ror.org/03w9cdv26', 'no_lang_code', 1, 'https://ror.org/03w9cdv26 Maichin Dom Университетска акушеро-гинекологична болница “Майчин дом”'),
(263, 'https://ror.org/058hsp657', 'en', 1, 'https://ror.org/058hsp657 Hospital of Lithuanian University of Health Sciences Kaunas Clinics Lietuvos sveikatos mokslų universiteto ligoninė Kauno klinikos'),
(264, 'https://ror.org/04e8jbs38', 'en', 1, 'https://ror.org/04e8jbs38 Helmut Schmidt University Helmut-Schmidt-Universität'),
(265, 'https://ror.org/04mdycw91', 'no_lang_code', 1, 'https://ror.org/04mdycw91 Eurofins (France)'),
(266, 'https://ror.org/039xw7n32', 'en', 1, 'https://ror.org/039xw7n32 Istituto Universitario di Studi Europei University Institute of European Studies'),
(267, 'https://ror.org/01dxm2p72', 'no_lang_code', 1, 'https://ror.org/01dxm2p72 Saipem (Italy) Società Anonima Italiana Perforazioni E Montaggi'),
(268, 'https://ror.org/00sge8677', 'en', 1, 'https://ror.org/00sge8677 BRAC University ব্র্যাক ইউনিভার্সিটি'),
(269, 'https://ror.org/04aa89262', 'en', 1, 'https://ror.org/04aa89262 Radiolabs'),
(270, 'https://ror.org/03y4myd35', 'en', 1, 'https://ror.org/03y4myd35 Infectious Disease Research Institute'),
(271, 'https://ror.org/04jkbnw46', 'en', 1, 'https://ror.org/04jkbnw46 Center for Infectious Disease Research'),
(272, 'https://ror.org/00hhkn466', 'en', 1, 'https://ror.org/00hhkn466 Japan Society for the Promotion of Science 日本学術振興会'),
(273, 'https://ror.org/04s7f5535', 'no_lang_code', 1, 'https://ror.org/04s7f5535 Beta Technology Limited'),
(274, 'https://ror.org/05pwfyy15', 'en', 1, 'https://ror.org/05pwfyy15 National Centre for Research and Development'),
(275, 'https://ror.org/00j9c2840', 'en', 1, 'https://ror.org/00j9c2840 Oslo University Hospital'),
(276, 'https://ror.org/05t3n1398', 'en', 1, 'https://ror.org/05t3n1398 Natural Resources Institute'),
(277, 'https://ror.org/017pz3h73', 'en', 1, 'https://ror.org/017pz3h73 Urban Institute'),
(278, 'https://ror.org/02pf50490', 'no_lang_code', 1, 'https://ror.org/02pf50490 Immunomedics (United States)'),
(279, 'https://ror.org/04nyf1f54', 'en', 1, 'https://ror.org/04nyf1f54 Shanghai Center For Bioinformation Technology 上海生物信息技术研究中心'),
(280, 'https://ror.org/058rkm744', 'en', 1, 'https://ror.org/058rkm744 Niabi Zoological Society'),
(281, 'https://ror.org/03hvxkc45', 'en', 1, 'https://ror.org/03hvxkc45 Bibra International'),
(282, 'https://ror.org/00qhe6a56', 'no_lang_code', 1, 'https://ror.org/00qhe6a56 Miltenyi Biotec (Germany)'),
(283, 'https://ror.org/0595gz585', 'en', 1, 'https://ror.org/0595gz585 University of Gondar'),
(284, 'https://ror.org/015j35893', 'en', 1, 'https://ror.org/015j35893 English Heritage'),
(285, 'https://ror.org/01hsw0492', 'en', 1, 'https://ror.org/01hsw0492 Gesellschaft für Chemische Technik und Biotechnologie Society for Chemical Engineering and Biotechnology'),
(286, 'https://ror.org/03dnktm38', 'no_lang_code', 1, 'https://ror.org/03dnktm38 Scimar Engineering Ltd'),
(287, 'https://ror.org/00pb8h375', 'en', 1, 'https://ror.org/00pb8h375 Bauman Moscow State Technical University Московский государственный технический университет имени Н. Э. Баумана'),
(288, 'https://ror.org/055aebe25', 'no_lang_code', 1, 'https://ror.org/055aebe25 CRE Group (United States)'),
(289, 'https://ror.org/04xv01a59', 'en', 1, 'https://ror.org/04xv01a59 The Pirbright Institute'),
(290, 'https://ror.org/02tpgw303', 'en', 1, 'https://ror.org/02tpgw303 Institute for Systems Biology'),
(291, 'https://ror.org/01b8kcc49', 'en', 1, 'https://ror.org/01b8kcc49 National Cheng Kung University'),
(292, 'https://ror.org/003x8tf04', 'no_lang_code', 1, 'https://ror.org/003x8tf04 Profilarbed (Luxembourg)'),
(293, 'https://ror.org/01z83rb65', 'fr', 1, 'https://ror.org/01z83rb65 Adi Valor'),
(294, 'https://ror.org/002hsbm82', 'en', 1, 'https://ror.org/002hsbm82 Tufts Medical Center'),
(295, 'https://ror.org/01zxdeg39', 'en', 1, 'https://ror.org/01zxdeg39 Harvard Pilgrim Health Care'),
(296, 'https://ror.org/055546q82', 'en', 1, 'https://ror.org/055546q82 Bộ Y tế (Việt Nam) Ministry of Health'),
(297, 'https://ror.org/02g6d4t03', 'de', 1, 'https://ror.org/02g6d4t03 Gesellschaft Fur Mathematik Und Datenverarbeitung'),
(298, 'https://ror.org/03gjyng84', 'no_lang_code', 1, 'https://ror.org/03gjyng84 Sierra Wireless (Canada)'),
(299, 'https://ror.org/00p8xqj61', 'en', 1, 'https://ror.org/00p8xqj61 Karpov Institute of Physical Chemistry Акционерное общество Ордена Трудового Красного Знамени научно-исследовательский физико-химический институт имени Л.Я. Карпова'),
(300, 'https://ror.org/02ntgty32', 'en', 1, 'https://ror.org/02ntgty32 Flygtekniska försöksanstalten National Aeronautical Research Institute'),
(301, 'https://ror.org/03x516a66', 'en', 1, 'https://ror.org/03x516a66 Bundesanstalt für Materialforschung und -prüfung Federal Institute For Materials Research and Testing'),
(302, 'https://ror.org/003dzgw21', 'fr', 1, 'https://ror.org/003dzgw21 Centre Technique Des Industries De La Fonderie'),
(303, 'https://ror.org/03wgsss62', 'no_lang_code', 1, 'https://ror.org/03wgsss62 Aciéries Réunies de Burbach-Eich-Dudelange Arbed (Luxembourg) Vereinigte Stahlhütten Burbach-Eich-Düdelingen'),
(304, 'https://ror.org/03661z977', 'no_lang_code', 1, 'https://ror.org/03661z977 HEF Groupe (France)'),
(305, 'https://ror.org/0050ra204', 'it', 1, 'https://ror.org/0050ra204 Centro Studi Sui Sistemi Di Trasporto Spa'),
(306, 'https://ror.org/00tzmb306', 'en', 1, 'https://ror.org/00tzmb306 Danish Maritime Institute'),
(307, 'https://ror.org/053ny5136', 'no_lang_code', 1, 'https://ror.org/053ny5136 Fujitsu (United Kingdom)'),
(308, 'https://ror.org/01kdvym37', 'de', 1, 'https://ror.org/01kdvym37 Battelle-Institut ev'),
(309, 'https://ror.org/012ae7p27', 'no_lang_code', 1, 'https://ror.org/012ae7p27 Italtel (Italy)'),
(310, 'https://ror.org/01s7y5e82', 'en', 1, 'https://ror.org/01s7y5e82 Ivan Franko Nemzeti Egyetem Lviv Lviv University Uniwersytet Lwowski Львовский национальный университет имени Ивана Франко Львівський національний університет імені Івана Франка'),
(311, 'https://ror.org/01k6vxj52', 'en', 1, 'https://ror.org/01k6vxj52 Omsk State University Омский государственный университет имени Ф. М. Достоевского'),
(312, 'https://ror.org/01x3jjv63', 'en', 1, 'https://ror.org/01x3jjv63 Uzhhorod National University Użhorodzki Uniwersytet Narodowy Ужгородский национальный университет Ужгородський національний університет'),
(313, 'https://ror.org/02he2nc27', 'en', 1, 'https://ror.org/02he2nc27 National Research Tomsk State University Национа́льный иссле́довательский То́мский госуда́рственный университе́т'),
(314, 'https://ror.org/029njb796', 'en', 1, 'https://ror.org/029njb796 Perm State University Пермский государственный университет'),
(315, 'https://ror.org/00ygzyy93', 'en', 1, 'https://ror.org/00ygzyy93 Independent University of Moscow Независимый Московский университет'),
(316, 'https://ror.org/04s36qm86', 'en', 1, 'https://ror.org/04s36qm86 Chelyabinsk State University Челябинский государственный университет'),
(317, 'https://ror.org/00yp6m473', 'en', 1, 'https://ror.org/00yp6m473 Udmurt State University Удмуртский государственный университет'),
(318, 'https://ror.org/03shav252', 'en', 1, 'https://ror.org/03shav252 Kazan State Technological University Казанский национальный исследовательский технологический университет'),
(319, 'https://ror.org/013pk4y14', 'en', 1, 'https://ror.org/013pk4y14 Kazan State Medical University Казанский государственный медицинский университет'),
(320, 'https://ror.org/02sehzp52', 'en', 1, 'https://ror.org/02sehzp52 Belarusian State University of Informatics and Radioelectronics Беларускі дзяржаўны ўніверсітэт інфарматыкі і радыёэлектронікі Белорусский государственный университет информатики и радиоэлектроники'),
(321, 'https://ror.org/04dngzj56', 'en', 1, 'https://ror.org/04dngzj56 American University of Armenia Հայաստանի ամերիկյան համալսարան'),
(322, 'https://ror.org/00em04n91', 'en', 1, 'https://ror.org/00em04n91 Moscow State University of Civil Engineering Московский Государственный Строительный Университет'),
(323, 'https://ror.org/059w0gb06', 'en', 1, 'https://ror.org/059w0gb06 Karakalpak State University'),
(324, 'https://ror.org/01qn0gc28', 'en', 1, 'https://ror.org/01qn0gc28 Yuri Gagarin State Technical University of Saratov Саратовский государственный технический университет имени Ю. А. Гагарина'),
(325, 'https://ror.org/014n7rf11', 'en', 1, 'https://ror.org/014n7rf11 Moscow State Aviation Technological University Российский государственный технологический университет имени К. Э. Циолковского'),
(326, 'https://ror.org/036yvre49', 'en', 1, 'https://ror.org/036yvre49 Kemerovo State University Кемеровский государственный университет'),
(327, 'https://ror.org/03n6cf849', 'no_lang_code', 1, 'https://ror.org/03n6cf849 Ricerca sul Sistema Energetico (Italy)'),
(328, 'https://ror.org/04zap7912', 'en', 1, 'https://ror.org/04zap7912 Yunnan University of Traditional Chinese Medicine 云南中医药大学'),
(329, 'https://ror.org/03zn9xk79', 'en', 1, 'https://ror.org/03zn9xk79 University Teaching Hospital'),
(330, 'https://ror.org/02j3enb93', 'no_lang_code', 1, 'https://ror.org/02j3enb93 ArcelorMittal (Spain)'),
(331, 'https://ror.org/0015hpp74', 'en', 1, 'https://ror.org/0015hpp74 Hannah Research Foundation'),
(332, 'https://ror.org/033kc7n58', 'no_lang_code', 1, 'https://ror.org/033kc7n58 Creusot-Loire Entreprises (France)'),
(333, 'https://ror.org/05dbe0q91', 'en', 1, 'https://ror.org/05dbe0q91 Warren Spring Laboratory'),
(334, 'https://ror.org/01bvmk374', 'no_lang_code', 1, 'https://ror.org/01bvmk374 GIUNTI Intenational Division (Italy)'),
(335, 'https://ror.org/035j0tq82', 'no_lang_code', 1, 'https://ror.org/035j0tq82 Orange (France)'),
(336, 'https://ror.org/0049erg63', 'en', 1, 'https://ror.org/0049erg63 Kookmin University 국민대학교'),
(337, 'https://ror.org/0288jxv49', 'en', 1, 'https://ror.org/0288jxv49 Institute of Development Studies'),
(338, 'https://ror.org/03zeek684', 'it', 1, 'https://ror.org/03zeek684 Consorzio Universitario In Ingegneria Della Qualita'),
(339, 'https://ror.org/00jk4qh27', 'no_lang_code', 1, 'https://ror.org/00jk4qh27 TECO'),
(340, 'https://ror.org/01g312x22', 'no_lang_code', 1, 'https://ror.org/01g312x22 BG Group (United Kingdom)'),
(341, 'https://ror.org/03sz8rb35', 'es', 1, 'https://ror.org/03sz8rb35 Hospital General Universitario De Valencia'),
(342, 'https://ror.org/02fjy3w42', 'en', 1, 'https://ror.org/02fjy3w42 Ivanovo State University of Chemistry and Technology Ивановский государственный химико-технологический университет'),
(343, 'https://ror.org/04b8y3f13', 'no_lang_code', 1, 'https://ror.org/04b8y3f13 Alexandrovska Hospital университетска болница „Александровска'),
(344, 'https://ror.org/038fwcw54', 'en', 1, 'https://ror.org/038fwcw54 National Satellite Ocean Application Service 国家卫星海洋应用中心'),
(345, 'https://ror.org/00x3rpv59', 'en', 1, 'https://ror.org/00x3rpv59 Tomsk State Pedagogical University Томский государственный педагогический университет'),
(346, 'https://ror.org/0389pzc90', 'en', 1, 'https://ror.org/0389pzc90 Altai State Technical University Алтайский государственный технический университет имени И. И. Ползунова'),
(347, 'https://ror.org/03k793y62', 'en', 1, 'https://ror.org/03k793y62 Agricultural University of Tirana Universiteti Bujqësor i Tiranës Γεωπονικό πανεπιστήμιο Τιράνων'),
(348, 'https://ror.org/055vbxf86', 'en', 1, 'https://ror.org/055vbxf86 Addenbrooke''s Hospital'),
(349, 'https://ror.org/008wtrs16', 'pt', 1, 'https://ror.org/008wtrs16 Instituto Superior de Ciências Educativas'),
(350, 'https://ror.org/04xbrv698', 'en', 1, 'https://ror.org/04xbrv698 Institut für Mobil- und Satellitenfunktechnik Institute for Mobile and Satellite Communication Technology'),
(351, 'https://ror.org/010567a58', 'fr', 1, 'https://ror.org/010567a58 Centre Hospitalier Universitaire Amiens-Picardie'),
(352, 'https://ror.org/01kvp0178', 'no_lang_code', 1, 'https://ror.org/01kvp0178 Ontario Power Generation'),
(353, 'https://ror.org/02xh9x144', 'en', 1, 'https://ror.org/02xh9x144 University of Prince Edward Island Université de l''Île-du-prince-Édouard'),
(354, 'https://ror.org/02hw5fp67', 'en', 1, 'https://ror.org/02hw5fp67 National Institute for Environmental Studies 国立環境研究所'),
(355, 'https://ror.org/04zah8g26', 'no_lang_code', 1, 'https://ror.org/04zah8g26 Pouliadis Associates Corporation'),
(356, 'https://ror.org/0025g8755', 'en', 1, 'https://ror.org/0025g8755 Luigi Sacco Hospital Ospedale Luigi Sacco'),
(357, 'https://ror.org/00d80zx46', 'en', 1, 'https://ror.org/00d80zx46 Chang Gung University'),
(358, 'https://ror.org/017g36q02', 'en', 1, 'https://ror.org/017g36q02 Municipality of Amaroussion'),
(359, 'https://ror.org/01m1pv723', 'en', 1, 'https://ror.org/01m1pv723 Hôpitaux universitaires de Genève University Hospital of Geneva'),
(360, 'https://ror.org/054zv1w86', 'no_lang_code', 1, 'https://ror.org/054zv1w86 Glencore (Switzerland)'),
(361, 'https://ror.org/0509tgg56', 'no_lang_code', 1, 'https://ror.org/0509tgg56 Airbus (Spain)'),
(362, 'https://ror.org/01vjd7j86', 'en', 1, 'https://ror.org/01vjd7j86 Federalni Zavod za geologiju The Federal Institute for Geology'),
(363, 'https://ror.org/01grq2104', 'en', 1, 'https://ror.org/01grq2104 Torrey Pines Institute For Molecular Studies'),
(364, 'https://ror.org/0184gbk60', 'en', 1, 'https://ror.org/0184gbk60 Steinbeis Foundation Steinbeis-Stiftung'),
(365, 'https://ror.org/040r8fr65', 'en', 1, 'https://ror.org/040r8fr65 Aarhus University Hospital Skejby Sygehus'),
(366, 'https://ror.org/05by5hm18', 'en', 1, 'https://ror.org/05by5hm18 California State Polytechnic University Universidad Estatal Politécnica de California, Pomona Université d''État polytechnique de californie à pomona'),
(367, 'https://ror.org/01xtjs520', 'fr', 1, 'https://ror.org/01xtjs520 Institut Laue-Langevin'),
(368, 'https://ror.org/02kswma64', 'it', 1, 'https://ror.org/02kswma64 Istituto Nazionale per la Fisica della Materia'),
(369, 'https://ror.org/02vn11j58', 'en', 1, 'https://ror.org/02vn11j58 Ulyanovsk State University Ульяновский государственный университет'),
(370, 'https://ror.org/042q8va29', 'no_lang_code', 1, 'https://ror.org/042q8va29 Sidenor (Greece) ΣΙΔΕΝΟΡ'),
(371, 'https://ror.org/00184ca40', 'no_lang_code', 1, 'https://ror.org/00184ca40 Ballard Power Systems (Canada)'),
(372, 'https://ror.org/05m34fq04', 'no_lang_code', 1, 'https://ror.org/05m34fq04 Motorola (France)'),
(373, 'https://ror.org/02vvj6403', 'en', 1, 'https://ror.org/02vvj6403 Smolensk University for Humanities Смоленский гуманитарный университет');
INSERT INTO `rors` VALUES
(374, 'https://ror.org/01nxjpd08', 'en', 1, 'https://ror.org/01nxjpd08 Vladimir State University Федеральное государственное бюджетное образовательное учреждение высшего образования Владимирский государственный университет имени Александра Григорьевича и Николая Григорьевича Столетовых'),
(375, 'https://ror.org/05qtccm96', 'ga', 1, 'https://ror.org/05qtccm96 Forbairt'),
(376, 'https://ror.org/02kcpr174', 'en', 1, 'https://ror.org/02kcpr174 MRC Human Immunology Unit'),
(377, 'https://ror.org/05kzadn81', 'en', 1, 'https://ror.org/05kzadn81 Nara Advanced Teachers College for Women Nara Women''s University 奈良女子大学'),
(378, 'https://ror.org/02zrvx577', 'en', 1, 'https://ror.org/02zrvx577 University of Bahr El-Ghazal'),
(379, 'https://ror.org/049yjqb12', 'en', 1, 'https://ror.org/049yjqb12 Communications and Information Technology Ontario'),
(380, 'https://ror.org/04my10541', 'en', 1, 'https://ror.org/04my10541 Centre of Advanced Studies'),
(381, 'https://ror.org/00pmcf502', 'no_lang_code', 1, 'https://ror.org/00pmcf502 Talisman Energy'),
(382, 'https://ror.org/04ky9dq80', 'no_lang_code', 1, 'https://ror.org/04ky9dq80 Vaexjoe Energi Ab'),
(383, 'https://ror.org/056r5vk88', 'en', 1, 'https://ror.org/056r5vk88 Penza State University Пензенский государственный университет'),
(384, 'https://ror.org/019k4jq75', 'en', 1, 'https://ror.org/019k4jq75 Brooklyn College College de Brooklyn de la Universidad de la Ciudad de Nueva York'),
(385, 'https://ror.org/03rjt0z37', 'en', 1, 'https://ror.org/03rjt0z37 German University in Cairo الجامعة الألمانية بالقاهرة'),
(386, 'https://ror.org/00v6s9648', 'en', 1, 'https://ror.org/00v6s9648 University of Worcester'),
(387, 'https://ror.org/04tzy5g14', 'en', 1, 'https://ror.org/04tzy5g14 Missouri Botanical Garden'),
(388, 'https://ror.org/00ajykz30', 'en', 1, 'https://ror.org/00ajykz30 UK Water Industry Research'),
(389, 'https://ror.org/028jc0449', 'en', 1, 'https://ror.org/028jc0449 Austrian Research Promotion Agency Österreichische Forschungsförderungsgesellschaft'),
(390, 'https://ror.org/020cmsc29', 'en', 1, 'https://ror.org/020cmsc29 Rajendra Memorial Research Institute of Medical Sciences'),
(391, 'https://ror.org/00ghjek97', 'en', 1, 'https://ror.org/00ghjek97 Orel State University named after I.S. Turgenev Орловский государственный университет имени И. С. Тургенева'),
(392, 'https://ror.org/05mpt6s70', 'no_lang_code', 1, 'https://ror.org/05mpt6s70 Applica Sprl'),
(393, 'https://ror.org/04mkpd147', 'es', 1, 'https://ror.org/04mkpd147 Red Universitaria Nacional'),
(394, 'https://ror.org/01703db54', 'en', 1, 'https://ror.org/01703db54 National Institute of Advanced Industrial Science and Technology 産業技術総合研究所'),
(395, 'https://ror.org/042awg277', 'en', 1, 'https://ror.org/042awg277 MCNC Research and Development Institute'),
(396, 'https://ror.org/027pqks09', 'no_lang_code', 1, 'https://ror.org/027pqks09 S&N (Germany)'),
(397, 'https://ror.org/04j6dw954', 'en', 1, 'https://ror.org/04j6dw954 Have Dreams'),
(398, 'https://ror.org/02q291e51', 'no_lang_code', 1, 'https://ror.org/02q291e51 Suncor Energy (Canada)'),
(399, 'https://ror.org/04mhx6838', 'en', 1, 'https://ror.org/04mhx6838 National Institute on Deafness and Other Communication Disorders'),
(400, 'https://ror.org/02af4h012', 'en', 1, 'https://ror.org/02af4h012 Jadavpur University Université jadavpur यादवपुर विश्वविद्यालय যাদবপুর বিশ্ববিদ্যালয় ਜਾਦਵਪੁਰ ਯੂਨੀਵਰਸਿਟੀ જાદવપુર યુનિવર્સિટી జాదవ్ పూర్ విశ్వవిద్యాలయం ಜಾದವ್ ಪುರ ವಿಶ್ವವಿದ್ಯಾಲಯ'),
(401, 'https://ror.org/02t0qr014', 'en', 1, 'https://ror.org/02t0qr014 Universidad de Carolina del Norte en Wilmington University of North Carolina Wilmington Université de wilmington'),
(402, 'https://ror.org/03dkyhy49', 'no_lang_code', 1, 'https://ror.org/03dkyhy49 Artann Laboratories, Inc.'),
(403, 'https://ror.org/00xyeez13', 'en', 1, 'https://ror.org/00xyeez13 Kunming University of Science and Technology 昆明理工大学'),
(404, 'https://ror.org/04qpegs24', 'en', 1, 'https://ror.org/04qpegs24 Resources For The Future'),
(405, 'https://ror.org/05jfq2w07', 'en', 1, 'https://ror.org/05jfq2w07 Scottish Universities Environmental Research Centre'),
(406, 'https://ror.org/03hamhx47', 'en', 1, 'https://ror.org/03hamhx47 Universidad de Massachusetts Lowell University of Massachusetts Lowell'),
(407, 'https://ror.org/00nas2c56', 'no_lang_code', 1, 'https://ror.org/00nas2c56 Ericsson (Canada)'),
(408, 'https://ror.org/01b8f4h92', 'no_lang_code', 1, 'https://ror.org/01b8f4h92 Athens Technology Center (Greece)'),
(409, 'https://ror.org/028v4fg64', 'no_lang_code', 1, 'https://ror.org/028v4fg64 Vattenfall (Sweden)'),
(410, 'https://ror.org/00j0z5m32', 'en', 1, 'https://ror.org/00j0z5m32 Alabama Department of Public Health'),
(411, 'https://ror.org/015h2da09', 'en', 1, 'https://ror.org/015h2da09 Boston Public Health Commission'),
(412, 'https://ror.org/03a1gte98', 'en', 1, 'https://ror.org/03a1gte98 Agence spatiale canadienne Canadian Space Agency'),
(413, 'https://ror.org/051wnqr14', 'en', 1, 'https://ror.org/051wnqr14 Department of Defence'),
(414, 'https://ror.org/03v188q73', 'en', 1, 'https://ror.org/03v188q73 Earthquake Engineering Research Institute'),
(415, 'https://ror.org/00r66pz14', 'en', 1, 'https://ror.org/00r66pz14 Natural England'),
(416, 'https://ror.org/03kmrjq19', 'en', 1, 'https://ror.org/03kmrjq19 Departamento de Salud y Servicios para las Personas Mayores del Estado de Nueva Jersey New Jersey Department of Health'),
(417, 'https://ror.org/00jh2w590', 'en', 1, 'https://ror.org/00jh2w590 New Mexico Department of Health'),
(418, 'https://ror.org/01gst4g14', 'en', 1, 'https://ror.org/01gst4g14 New York City Department of Health and Mental Hygiene'),
(419, 'https://ror.org/02yq6my61', 'en', 1, 'https://ror.org/02yq6my61 Oklahoma Department of Mental Health and Substance Abuse Services'),
(420, 'https://ror.org/055hhmc29', 'en', 1, 'https://ror.org/055hhmc29 Oregon Department of Human Services'),
(421, 'https://ror.org/04zn9qp70', 'en', 1, 'https://ror.org/04zn9qp70 Pennsylvania Department of Human Services'),
(422, 'https://ror.org/054652k97', 'en', 1, 'https://ror.org/054652k97 Public Health – Seattle & King County'),
(423, 'https://ror.org/0566w5t03', 'en', 1, 'https://ror.org/0566w5t03 United States Office of Personnel Management'),
(424, 'https://ror.org/05eq41471', 'en', 1, 'https://ror.org/05eq41471 Veterans Health Administration'),
(425, 'https://ror.org/03vzpaf33', 'en', 1, 'https://ror.org/03vzpaf33 Einstein Medical Center Philadelphia'),
(426, 'https://ror.org/00jyx0v10', 'en', 1, 'https://ror.org/00jyx0v10 Alfred I. duPont Hospital for Children'),
(427, 'https://ror.org/04drvxt59', 'en', 1, 'https://ror.org/04drvxt59 Beth Israel Deaconess Medical Center'),
(428, 'https://ror.org/059c3mv67', 'en', 1, 'https://ror.org/059c3mv67 Cambridge Health Alliance'),
(429, 'https://ror.org/0483mr804', 'en', 1, 'https://ror.org/0483mr804 Carolinas Medical Center'),
(430, 'https://ror.org/03763ep67', 'en', 1, 'https://ror.org/03763ep67 Children''s Hospital of Pittsburgh'),
(431, 'https://ror.org/04zfmcq84', 'en', 1, 'https://ror.org/04zfmcq84 Children''s Mercy Hospital'),
(432, 'https://ror.org/01hcyya48', 'en', 1, 'https://ror.org/01hcyya48 Cincinnati Children''s Hospital Medical Center'),
(433, 'https://ror.org/01fbz6h17', 'en', 1, 'https://ror.org/01fbz6h17 Denver Health Medical Center'),
(434, 'https://ror.org/04r33pf22', 'en', 1, 'https://ror.org/04r33pf22 Guy''s Hospital'),
(435, 'https://ror.org/008zj0x80', 'en', 1, 'https://ror.org/008zj0x80 Hackensack University Medical Center'),
(436, 'https://ror.org/016bbv872', 'en', 1, 'https://ror.org/016bbv872 Hahnemann University Hospital'),
(437, 'https://ror.org/05h4zj272', 'en', 1, 'https://ror.org/05h4zj272 Harbor–UCLA Medical Center'),
(438, 'https://ror.org/05q6tgt32', 'en', 1, 'https://ror.org/05q6tgt32 Kennedy Krieger Institute'),
(439, 'https://ror.org/03hkffh19', 'en', 1, 'https://ror.org/03hkffh19 Legacy Emanuel Medical Center'),
(440, 'https://ror.org/05msy3z48', 'en', 1, 'https://ror.org/05msy3z48 Legacy Good Samaritan Medical Center'),
(441, 'https://ror.org/034c1gc25', 'en', 1, 'https://ror.org/034c1gc25 Maine Medical Center'),
(442, 'https://ror.org/01kta7d96', 'en', 1, 'https://ror.org/01kta7d96 McLean Hospital'),
(443, 'https://ror.org/04c0a2j77', 'en', 1, 'https://ror.org/04c0a2j77 Memorial Hospital of Rhode Island'),
(444, 'https://ror.org/053exzj86', 'en', 1, 'https://ror.org/053exzj86 Miriam Hospital'),
(445, 'https://ror.org/05m8d2x46', 'en', 1, 'https://ror.org/05m8d2x46 North Shore University Hospital'),
(446, 'https://ror.org/01h22ap11', 'en', 1, 'https://ror.org/01h22ap11 Penn State Milton S. Hershey Medical Center'),
(447, 'https://ror.org/015tmw922', 'en', 1, 'https://ror.org/015tmw922 Providence Portland Medical Center'),
(448, 'https://ror.org/0478ng049', 'en', 1, 'https://ror.org/0478ng049 Roger Williams Medical Center'),
(449, 'https://ror.org/04jq72f57', 'en', 1, 'https://ror.org/04jq72f57 Royal Darwin Hospital'),
(450, 'https://ror.org/04wrfcw61', 'en', 1, 'https://ror.org/04wrfcw61 Sanford USD Medical Center'),
(451, 'https://ror.org/02ge60j37', 'en', 1, 'https://ror.org/02ge60j37 Scott & White Memorial Hospital'),
(452, 'https://ror.org/00cr15z55', 'en', 1, 'https://ror.org/00cr15z55 St. Elizabeth''s Medical Center'),
(453, 'https://ror.org/00m72wv30', 'en', 1, 'https://ror.org/00m72wv30 St. Joseph''s Hospital and Medical Center'),
(454, 'https://ror.org/011t2cn48', 'en', 1, 'https://ror.org/011t2cn48 St. Luke''s-Roosevelt Hospital Center'),
(455, 'https://ror.org/032d59j24', 'en', 1, 'https://ror.org/032d59j24 Hospital Tan Tock Seng Tan Tock Seng Hospital மருத்துவமனையில்ல் 陈笃生医院'),
(456, 'https://ror.org/013e81n30', 'en', 1, 'https://ror.org/013e81n30 University of Alberta Hospital'),
(457, 'https://ror.org/0277n1841', 'en', 1, 'https://ror.org/0277n1841 University of Tennessee Medical Center'),
(458, 'https://ror.org/03z8sn326', 'en', 1, 'https://ror.org/03z8sn326 Women & Infants Hospital of Rhode Island'),
(459, 'https://ror.org/04p405e02', 'en', 1, 'https://ror.org/04p405e02 Biblioteca del Congreso de Estados Unidos Bibliothèque du Congrès Library of Congress'),
(460, 'https://ror.org/02zha5019', 'en', 1, 'https://ror.org/02zha5019 Beijing Museum of Natural History 北京自然博物馆'),
(461, 'https://ror.org/0037yf233', 'en', 1, 'https://ror.org/0037yf233 Exploratorium'),
(462, 'https://ror.org/057seh071', 'en', 1, 'https://ror.org/057seh071 Franklin Institute'),
(463, 'https://ror.org/03davap66', 'en', 1, 'https://ror.org/03davap66 Illinois State Museum'),
(464, 'https://ror.org/03f91xw18', 'en', 1, 'https://ror.org/03f91xw18 Museum of the Earth'),
(465, 'https://ror.org/00p9h0053', 'en', 1, 'https://ror.org/00p9h0053 Natural History Museum of Los Angeles County'),
(466, 'https://ror.org/01e87ch81', 'en', 1, 'https://ror.org/01e87ch81 Oregon Museum of Science and Industry'),
(467, 'https://ror.org/02nyfes25', 'en', 1, 'https://ror.org/02nyfes25 Science Museum of Minnesota'),
(468, 'https://ror.org/02k61s246', 'en', 1, 'https://ror.org/02k61s246 American Society for Cell Biology'),
(469, 'https://ror.org/04ztdzs79', 'en', 1, 'https://ror.org/04ztdzs79 Fenway Health'),
(470, 'https://ror.org/03sn6yr77', 'en', 1, 'https://ror.org/03sn6yr77 Point Blue Conservation Science'),
(471, 'https://ror.org/03sfkwk85', 'en', 1, 'https://ror.org/03sfkwk85 Rockefeller Foundation'),
(472, 'https://ror.org/054gzqw08', 'en', 1, 'https://ror.org/054gzqw08 Central Connecticut State University Universidad Estatal de Connecticut Central'),
(473, 'https://ror.org/0209dk158', 'en', 1, 'https://ror.org/0209dk158 Lowell Observatory'),
(474, 'https://ror.org/04mh52z70', 'en', 1, 'https://ror.org/04mh52z70 Observatorio Astrofísico Smithsonian Smithsonian Astrophysical Observatory'),
(475, 'https://ror.org/00vxe3x87', 'de', 1, 'https://ror.org/00vxe3x87 Sternwarte Stuttgart Stuttgart Observatory'),
(476, 'https://ror.org/00m2ag473', 'en', 1, 'https://ror.org/00m2ag473 Archbold Biological Station'),
(477, 'https://ror.org/008encc97', 'en', 1, 'https://ror.org/008encc97 East–West Center'),
(478, 'https://ror.org/03zzj3f20', 'en', 1, 'https://ror.org/03zzj3f20 Fields Institute for Research in Mathematical Sciences'),
(479, 'https://ror.org/003j5cv40', 'en', 1, 'https://ror.org/003j5cv40 Haskins Laboratories'),
(480, 'https://ror.org/02e1cpg76', 'en', 1, 'https://ror.org/02e1cpg76 Hauptman-Woodward Medical Research Institute'),
(481, 'https://ror.org/038321296', 'en', 1, 'https://ror.org/038321296 Gladstone Institutes'),
(482, 'https://ror.org/05hs5r386', 'en', 1, 'https://ror.org/05hs5r386 Mathematical Sciences Research Institute'),
(483, 'https://ror.org/01s434164', 'en', 1, 'https://ror.org/01s434164 Nathan Kline Institute for Psychiatric Research'),
(484, 'https://ror.org/022swbj46', 'en', 1, 'https://ror.org/022swbj46 National Brain Research Centre राष्ट्रीय मस्तिष्क अनुसंधान केंद्र, मानेसर, हरियाणा'),
(485, 'https://ror.org/01xvcf081', 'en', 1, 'https://ror.org/01xvcf081 New York Blood Center'),
(486, 'https://ror.org/040cnym54', 'en', 1, 'https://ror.org/040cnym54 Pennington Biomedical Research Center'),
(487, 'https://ror.org/00e7vmq69', 'en', 1, 'https://ror.org/00e7vmq69 Polytechnic University of the Philippines'),
(488, 'https://ror.org/03zjj0p70', 'en', 1, 'https://ror.org/03zjj0p70 Population Council'),
(489, 'https://ror.org/02378jc90', 'en', 1, 'https://ror.org/02378jc90 Raja Ramanna Centre for Advanced Technology राजा रामण्णा अत्याधुनिक तंत्रज्ञान केंद्र राजा रामन्ना प्रगत प्रौद्योगिकी केन्द्र രാജാ രാമണ്ണ സെന്റർ ഫോർ അഡ്വാൻസ്ഡ് ടെക്നോളജി'),
(490, 'https://ror.org/01s5axj25', 'en', 1, 'https://ror.org/01s5axj25 Lunenfeld-Tanenbaum Research Institute'),
(491, 'https://ror.org/05783y657', 'en', 1, 'https://ror.org/05783y657 Smith-Kettlewell Eye Research Institute'),
(492, 'https://ror.org/006cvnv84', 'en', 1, 'https://ror.org/006cvnv84 Social Science Research Council'),
(493, 'https://ror.org/04bgfm609', 'en', 1, 'https://ror.org/04bgfm609 Stowers Institute for Medical Research'),
(494, 'https://ror.org/00wm07d60', 'en', 1, 'https://ror.org/00wm07d60 Van Andel Institute'),
(495, 'https://ror.org/004srrf86', 'en', 1, 'https://ror.org/004srrf86 Abilene Christian University Universidad Cristiana de Abilene'),
(496, 'https://ror.org/025n13r50', 'en', 1, 'https://ror.org/025n13r50 Adelphi University'),
(497, 'https://ror.org/01eedy375', 'en', 1, 'https://ror.org/01eedy375 Alabama State University'),
(498, 'https://ror.org/00dr54257', 'en', 1, 'https://ror.org/00dr54257 Alcorn State University'),
(499, 'https://ror.org/02h7s7a86', 'en', 1, 'https://ror.org/02h7s7a86 Allen University'),
(500, 'https://ror.org/04k8zab17', 'en', 1, 'https://ror.org/04k8zab17 Alliant International University'),
(501, 'https://ror.org/03ekzka28', 'en', 1, 'https://ror.org/03ekzka28 Antioch University'),
(502, 'https://ror.org/00nzje529', 'en', 1, 'https://ror.org/00nzje529 Antioch University New England'),
(503, 'https://ror.org/002rw7y37', 'no_lang_code', 1, 'https://ror.org/002rw7y37 Aoyama Gakuin University 青山学院大学'),
(504, 'https://ror.org/00ff4bt20', 'en', 1, 'https://ror.org/00ff4bt20 Arcadia University'),
(505, 'https://ror.org/03bahkk91', 'en', 1, 'https://ror.org/03bahkk91 Arkansas Tech University'),
(506, 'https://ror.org/03rr7q548', 'en', 1, 'https://ror.org/03rr7q548 Armstrong Atlantic State University'),
(507, 'https://ror.org/05c5js686', 'en', 1, 'https://ror.org/05c5js686 Ashland University'),
(508, 'https://ror.org/01k18gj34', 'en', 1, 'https://ror.org/01k18gj34 Ashworth College'),
(509, 'https://ror.org/01zx16v02', 'en', 1, 'https://ror.org/01zx16v02 Athens State University Université d''État d''athens'),
(510, 'https://ror.org/01wmj1g45', 'en', 1, 'https://ror.org/01wmj1g45 Atlanta University Center'),
(511, 'https://ror.org/01zvqw119', 'en', 1, 'https://ror.org/01zvqw119 Auckland University of Technology'),
(512, 'https://ror.org/03a3qwm26', 'en', 1, 'https://ror.org/03a3qwm26 Augustana University'),
(513, 'https://ror.org/027487t94', 'en', 1, 'https://ror.org/027487t94 Aurora University'),
(514, 'https://ror.org/04r0kzx48', 'en', 1, 'https://ror.org/04r0kzx48 Baker University'),
(515, 'https://ror.org/0317prg89', 'no_lang_code', 1, 'https://ror.org/0317prg89 Bastyr University'),
(516, 'https://ror.org/033vjpd42', 'en', 1, 'https://ror.org/033vjpd42 Belmont University'),
(517, 'https://ror.org/01yjyvb35', 'en', 1, 'https://ror.org/01yjyvb35 Bemidji State University'),
(518, 'https://ror.org/053fh2363', 'en', 1, 'https://ror.org/053fh2363 Benedictine University'),
(519, 'https://ror.org/01px48m89', 'en', 1, 'https://ror.org/01px48m89 Bentley University'),
(520, 'https://ror.org/04e0j1059', 'en', 1, 'https://ror.org/04e0j1059 Bethune-Cookman University'),
(521, 'https://ror.org/006g42111', 'en', 1, 'https://ror.org/006g42111 Birmingham–Southern College'),
(522, 'https://ror.org/03fng6237', 'en', 1, 'https://ror.org/03fng6237 Black Hills State University'),
(523, 'https://ror.org/02a1et264', 'en', 1, 'https://ror.org/02a1et264 Blackburn College'),
(524, 'https://ror.org/007dga614', 'en', 1, 'https://ror.org/007dga614 Bloomsburg University'),
(525, 'https://ror.org/040hwr020', 'en', 1, 'https://ror.org/040hwr020 Borough of Manhattan Community College'),
(526, 'https://ror.org/0567w8j84', 'en', 1, 'https://ror.org/0567w8j84 Bowie State University'),
(527, 'https://ror.org/022qy2d08', 'en', 1, 'https://ror.org/022qy2d08 Brenau University'),
(528, 'https://ror.org/02x3skf39', 'en', 1, 'https://ror.org/02x3skf39 Bridgewater State University Université d''État de bridgewater'),
(529, 'https://ror.org/018224j82', 'en', 1, 'https://ror.org/018224j82 Buena Vista University'),
(530, 'https://ror.org/04aznd361', 'en', 1, 'https://ror.org/04aznd361 Government Medical College கோழிக்கோடு மருத்துவக் கல்லூரி ഗവൺമെന്റ് മെഡിക്കൽ കോളേജ്, കോഴിക്കോട്'),
(531, 'https://ror.org/0029a9d62', 'en', 1, 'https://ror.org/0029a9d62 California Pacific University'),
(532, 'https://ror.org/03enmdz06', 'en', 1, 'https://ror.org/03enmdz06 California State University, Fresno Université d''État de Californie à Fresno'),
(533, 'https://ror.org/01056ge55', 'en', 1, 'https://ror.org/01056ge55 Canisius College'),
(534, 'https://ror.org/00jy9e726', 'en', 1, 'https://ror.org/00jy9e726 Capital University'),
(535, 'https://ror.org/00x5b2p37', 'en', 1, 'https://ror.org/00x5b2p37 Carroll College'),
(536, 'https://ror.org/02yf2ch17', 'en', 1, 'https://ror.org/02yf2ch17 Carroll University'),
(537, 'https://ror.org/059y9v737', 'en', 1, 'https://ror.org/059y9v737 Central College'),
(538, 'https://ror.org/03xhrps63', 'en', 1, 'https://ror.org/03xhrps63 Central State University'),
(539, 'https://ror.org/0340wst14', 'en', 1, 'https://ror.org/0340wst14 Changzhi Medical College 长治医学院'),
(540, 'https://ror.org/038x2fh14', 'en', 1, 'https://ror.org/038x2fh14 Charles R. Drew University of Medicine and Science'),
(541, 'https://ror.org/03mwnnn55', 'en', 1, 'https://ror.org/03mwnnn55 Charleston Southern University'),
(542, 'https://ror.org/02nckwn80', 'en', 1, 'https://ror.org/02nckwn80 Cheyney University of Pennsylvania Universidad de Cheyney de Pensilvania Université cheyney de pennsylvanie'),
(543, 'https://ror.org/00qwnam72', 'en', 1, 'https://ror.org/00qwnam72 Chiba Institute of Technology 千葉工業大学'),
(544, 'https://ror.org/05ekwbr88', 'en', 1, 'https://ror.org/05ekwbr88 Chicago State University Université d''État de chicago'),
(545, 'https://ror.org/0419nfc77', 'en', 1, 'https://ror.org/0419nfc77 China Three Gorges University 三峡大学'),
(546, 'https://ror.org/00g58cv73', 'en', 1, 'https://ror.org/00g58cv73 Chowan University'),
(547, 'https://ror.org/03andr831', 'en', 1, 'https://ror.org/03andr831 Christian Brothers University'),
(548, 'https://ror.org/00m4rwq02', 'en', 1, 'https://ror.org/00m4rwq02 Christopher Newport University'),
(549, 'https://ror.org/03181bn25', 'en', 1, 'https://ror.org/03181bn25 City College of San Francisco'),
(550, 'https://ror.org/0397tsa92', 'en', 1, 'https://ror.org/0397tsa92 Clark Atlanta University'),
(551, 'https://ror.org/03byx8t68', 'en', 1, 'https://ror.org/03byx8t68 Clarke University'),
(552, 'https://ror.org/00t47w971', 'en', 1, 'https://ror.org/00t47w971 Clayton State University'),
(553, 'https://ror.org/03chkg278', 'en', 1, 'https://ror.org/03chkg278 Coe College'),
(554, 'https://ror.org/00fvyjk73', 'en', 1, 'https://ror.org/00fvyjk73 Colby College'),
(555, 'https://ror.org/02z5bnb65', 'en', 1, 'https://ror.org/02z5bnb65 College of Idaho'),
(556, 'https://ror.org/00watgv28', 'en', 1, 'https://ror.org/00watgv28 College of Saint Benedict and Saint John''s University Collège de saint benedict et université de saint jean'),
(557, 'https://ror.org/05ma4gw77', 'en', 1, 'https://ror.org/05ma4gw77 Universidad del Pacífico University of the Pacific Université du pacifique'),
(558, 'https://ror.org/05exmrf24', 'en', 1, 'https://ror.org/05exmrf24 Coppin State University'),
(559, 'https://ror.org/016yv6y68', 'en', 1, 'https://ror.org/016yv6y68 Dakota State University'),
(560, 'https://ror.org/031pw0y55', 'en', 1, 'https://ror.org/031pw0y55 Dakota Wesleyan University'),
(561, 'https://ror.org/03g35dg18', 'en', 1, 'https://ror.org/03g35dg18 Delaware State University'),
(562, 'https://ror.org/058w59113', 'en', 1, 'https://ror.org/058w59113 Des Moines University Université de des moines'),
(563, 'https://ror.org/01p0ttv97', 'en', 1, 'https://ror.org/01p0ttv97 Dickinson State University'),
(564, 'https://ror.org/00bz6qm80', 'en', 1, 'https://ror.org/00bz6qm80 Dillard University'),
(565, 'https://ror.org/03e269852', 'en', 1, 'https://ror.org/03e269852 Donetsk State University of Management Донецкий государственный университет управления Донецький державний університет управління'),
(566, 'https://ror.org/01fxdkm29', 'en', 1, 'https://ror.org/01fxdkm29 Doshisha University 同志社大学'),
(567, 'https://ror.org/011ezgm44', 'en', 1, 'https://ror.org/011ezgm44 Dowling College'),
(568, 'https://ror.org/0367njg58', 'en', 1, 'https://ror.org/0367njg58 East Central University'),
(569, 'https://ror.org/023fgmp71', 'en', 1, 'https://ror.org/023fgmp71 East Georgia State College'),
(570, 'https://ror.org/05atz9219', 'en', 1, 'https://ror.org/05atz9219 East Stroudsburg University Université de pennsylvanie d''east stroudsburg'),
(571, 'https://ror.org/035z2ew45', 'en', 1, 'https://ror.org/035z2ew45 Eastern Illinois University Université de l''illinois de l''est'),
(572, 'https://ror.org/059xmmg10', 'en', 1, 'https://ror.org/059xmmg10 Eastern Mennonite University'),
(573, 'https://ror.org/047g72407', 'en', 1, 'https://ror.org/047g72407 Eastern Nazarene College'),
(574, 'https://ror.org/02xag2b27', 'en', 1, 'https://ror.org/02xag2b27 Eastern New Mexico University'),
(575, 'https://ror.org/01s8xxq04', 'en', 1, 'https://ror.org/01s8xxq04 Eastern Oregon University'),
(576, 'https://ror.org/017hkng22', 'en', 1, 'https://ror.org/017hkng22 Ehime University 愛媛大学'),
(577, 'https://ror.org/02n5cs023', 'en', 1, 'https://ror.org/02n5cs023 Elizabeth City State University'),
(578, 'https://ror.org/010jskt71', 'en', 1, 'https://ror.org/010jskt71 Embry–Riddle Aeronautical University'),
(579, 'https://ror.org/05shfp710', 'en', 1, 'https://ror.org/05shfp710 Evangel University'),
(580, 'https://ror.org/05qkp7h42', 'en', 1, 'https://ror.org/05qkp7h42 Five Branches University'),
(581, 'https://ror.org/008pwh115', 'en', 1, 'https://ror.org/008pwh115 Florida Memorial University'),
(582, 'https://ror.org/00pg98t08', 'en', 1, 'https://ror.org/00pg98t08 Francis Marion University'),
(583, 'https://ror.org/000zamq06', 'en', 1, 'https://ror.org/000zamq06 Franklin W. Olin College of Engineering'),
(584, 'https://ror.org/005ywsr52', 'en', 1, 'https://ror.org/005ywsr52 Friends University'),
(585, 'https://ror.org/048drzm61', 'en', 1, 'https://ror.org/048drzm61 Frostburg State University Université d''État de frostburg'),
(586, 'https://ror.org/02y041669', 'en', 1, 'https://ror.org/02y041669 Gannon University'),
(587, 'https://ror.org/04cyk2a69', 'en', 1, 'https://ror.org/04cyk2a69 General de Jesus College'),
(588, 'https://ror.org/044pfy487', 'en', 1, 'https://ror.org/044pfy487 Georgia Southwestern State University'),
(589, 'https://ror.org/04m8b1e20', 'en', 1, 'https://ror.org/04m8b1e20 Georgian Court University'),
(590, 'https://ror.org/00wtq7t14', 'en', 1, 'https://ror.org/00wtq7t14 Governors State University'),
(591, 'https://ror.org/05mnb6484', 'en', 1, 'https://ror.org/05mnb6484 Grambling State University Université d''État de grambling'),
(592, 'https://ror.org/046fm7598', 'en', 1, 'https://ror.org/046fm7598 Gunma University 群馬大学'),
(593, 'https://ror.org/02mb9s657', 'en', 1, 'https://ror.org/02mb9s657 Hampden–Sydney College'),
(594, 'https://ror.org/05fde5z47', 'en', 1, 'https://ror.org/05fde5z47 Hampton University Université de hampton'),
(595, 'https://ror.org/0376mc966', 'en', 1, 'https://ror.org/0376mc966 Haskell Indian Nations University'),
(596, 'https://ror.org/02q5gkg61', 'en', 1, 'https://ror.org/02q5gkg61 Henderson State University Université d''État henderson'),
(597, 'https://ror.org/00yghrj63', 'en', 1, 'https://ror.org/00yghrj63 Hendrix College'),
(598, 'https://ror.org/02syg0q74', 'en', 1, 'https://ror.org/02syg0q74 Hirosaki University 弘前大学'),
(599, 'https://ror.org/03chnr738', 'en', 1, 'https://ror.org/03chnr738 Hope College'),
(600, 'https://ror.org/00bx6dj65', 'en', 1, 'https://ror.org/00bx6dj65 Hosei University 法政大学'),
(601, 'https://ror.org/00vhhbt37', 'en', 1, 'https://ror.org/00vhhbt37 Howard Payne University'),
(602, 'https://ror.org/02my3bx32', 'en', 1, 'https://ror.org/02my3bx32 Hubei University of Chinese Medicine 湖北中医药大学'),
(603, 'https://ror.org/0176jt031', 'en', 1, 'https://ror.org/0176jt031 Huston–Tillotson University'),
(604, 'https://ror.org/02mtbrk18', 'en', 1, 'https://ror.org/02mtbrk18 Immaculata University'),
(605, 'https://ror.org/02s1hvj37', 'en', 1, 'https://ror.org/02s1hvj37 Indiana University South Bend'),
(606, 'https://ror.org/00ac5y077', 'pt', 1, 'https://ror.org/00ac5y077 Instituto Superior Autónomo de Estudos Politécnicos'),
(607, 'https://ror.org/01ecnnp60', 'en', 1, 'https://ror.org/01ecnnp60 Jackson State University Université d''État de Jackson'),
(608, 'https://ror.org/014wfj781', 'en', 1, 'https://ror.org/014wfj781 Jacksonville State University Université d''État de jacksonville'),
(609, 'https://ror.org/050rkhq40', 'en', 1, 'https://ror.org/050rkhq40 Jacksonville University Universidad de Jacksonville Université de jacksonville'),
(610, 'https://ror.org/02ct41q97', 'en', 1, 'https://ror.org/02ct41q97 John Brown University'),
(611, 'https://ror.org/01ayg2409', 'no_lang_code', 1, 'https://ror.org/01ayg2409 Juniata College'),
(612, 'https://ror.org/01692sz90', 'no_lang_code', 1, 'https://ror.org/01692sz90 Juntendo University 順天堂大学'),
(613, 'https://ror.org/01p37he69', 'en', 1, 'https://ror.org/01p37he69 Kansas Wesleyan University'),
(614, 'https://ror.org/049pfb863', 'en', 1, 'https://ror.org/049pfb863 Kent State University Université d''État de kent'),
(615, 'https://ror.org/046ekqm80', 'en', 1, 'https://ror.org/046ekqm80 Kentucky Community and Technical College System'),
(616, 'https://ror.org/01evb6z23', 'en', 1, 'https://ror.org/01evb6z23 King University'),
(617, 'https://ror.org/02bxrp522', 'en', 1, 'https://ror.org/02bxrp522 Knoxville College'),
(618, 'https://ror.org/01v7y5b55', 'en', 1, 'https://ror.org/01v7y5b55 Korea Maritime and Ocean University 한국해양대학교'),
(619, 'https://ror.org/00ktqrd38', 'en', 1, 'https://ror.org/00ktqrd38 Kyoto Prefectural University 京都府立大学'),
(620, 'https://ror.org/05t70xh16', 'en', 1, 'https://ror.org/05t70xh16 Kyoto Sangyo University 京都産業大学'),
(621, 'https://ror.org/02beve479', 'en', 1, 'https://ror.org/02beve479 La Salle University Universidad de la Salle Université la Salle'),
(622, 'https://ror.org/00yeysh84', 'en', 1, 'https://ror.org/00yeysh84 Lake Superior State University Université d''État du lac supérieur'),
(623, 'https://ror.org/008ms5s18', 'en', 1, 'https://ror.org/008ms5s18 Lamar University'),
(624, 'https://ror.org/05eq86m59', 'en', 1, 'https://ror.org/05eq86m59 Lander University'),
(625, 'https://ror.org/04d52ej85', 'en', 1, 'https://ror.org/04d52ej85 Lawrence Technological University Université technologique lawrence'),
(626, 'https://ror.org/005w9jb47', 'en', 1, 'https://ror.org/005w9jb47 Lawrence University Universidad Lawrence'),
(627, 'https://ror.org/039dmez53', 'en', 1, 'https://ror.org/039dmez53 LeMoyne–Owen College'),
(628, 'https://ror.org/006t60p65', 'en', 1, 'https://ror.org/006t60p65 LeTourneau University'),
(629, 'https://ror.org/05py5qd41', 'en', 1, 'https://ror.org/05py5qd41 Lebanon Valley College'),
(630, 'https://ror.org/00fwhaq79', 'en', 1, 'https://ror.org/00fwhaq79 Lee University'),
(631, 'https://ror.org/03m908832', 'en', 1, 'https://ror.org/03m908832 Lehman College'),
(632, 'https://ror.org/013ennz48', 'en', 1, 'https://ror.org/013ennz48 Lesley University'),
(633, 'https://ror.org/013pz1582', 'en', 1, 'https://ror.org/013pz1582 Lewis & Clark College'),
(634, 'https://ror.org/0376vhj74', 'en', 1, 'https://ror.org/0376vhj74 Lewis University'),
(635, 'https://ror.org/046aym564', 'en', 1, 'https://ror.org/046aym564 Lock Haven University'),
(636, 'https://ror.org/05g44an34', 'en', 1, 'https://ror.org/05g44an34 Long Beach City College'),
(637, 'https://ror.org/02rg9ze43', 'en', 1, 'https://ror.org/02rg9ze43 Madonna University Université madonna'),
(638, 'https://ror.org/01emtgd92', 'en', 1, 'https://ror.org/01emtgd92 Mansfield University'),
(639, 'https://ror.org/02myg6142', 'en', 1, 'https://ror.org/02myg6142 Maryville University'),
(640, 'https://ror.org/032knn732', 'en', 1, 'https://ror.org/032knn732 Mayville State University'),
(641, 'https://ror.org/045x76g34', 'en', 1, 'https://ror.org/045x76g34 McMurry University'),
(642, 'https://ror.org/00h04da97', 'en', 1, 'https://ror.org/00h04da97 McNeese State University'),
(643, 'https://ror.org/01g67by91', 'en', 1, 'https://ror.org/01g67by91 Mercer University Health Sciences Center'),
(644, 'https://ror.org/03fa2nf38', 'en', 1, 'https://ror.org/03fa2nf38 Methodist University'),
(645, 'https://ror.org/03mnxwj46', 'en', 1, 'https://ror.org/03mnxwj46 Metropolitan State University of Denver'),
(646, 'https://ror.org/0217hb928', 'en', 1, 'https://ror.org/0217hb928 Middlebury College'),
(647, 'https://ror.org/00t30ch44', 'en', 1, 'https://ror.org/00t30ch44 Midwestern State University Université d''État du midwest'),
(648, 'https://ror.org/02x2aj034', 'en', 1, 'https://ror.org/02x2aj034 Millersville University'),
(649, 'https://ror.org/0494reh34', 'en', 1, 'https://ror.org/0494reh34 Millsaps College'),
(650, 'https://ror.org/03msdae35', 'en', 1, 'https://ror.org/03msdae35 Minnesota State University Moorhead Université d''État du minnesota'),
(651, 'https://ror.org/01p7j6t08', 'en', 1, 'https://ror.org/01p7j6t08 Mississippi College'),
(652, 'https://ror.org/01hs43g67', 'en', 1, 'https://ror.org/01hs43g67 Mississippi University for Women'),
(653, 'https://ror.org/00rz5xc38', 'en', 1, 'https://ror.org/00rz5xc38 Mississippi Valley State University'),
(654, 'https://ror.org/03vn2ff22', 'en', 1, 'https://ror.org/03vn2ff22 Missouri Western State University'),
(655, 'https://ror.org/03rbn9086', 'en', 1, 'https://ror.org/03rbn9086 Monmouth College'),
(656, 'https://ror.org/01tj58m37', 'en', 1, 'https://ror.org/01tj58m37 Montana State University Billings'),
(657, 'https://ror.org/02y9g2b52', 'en', 1, 'https://ror.org/02y9g2b52 Morehouse College'),
(658, 'https://ror.org/03cqsth74', 'en', 1, 'https://ror.org/03cqsth74 Muhlenberg College'),
(659, 'https://ror.org/046410650', 'en', 1, 'https://ror.org/046410650 Muskingum University'),
(660, 'https://ror.org/00ys1hz88', 'en', 1, 'https://ror.org/00ys1hz88 Nagaoka University of Technology 長岡技術科学大学'),
(661, 'https://ror.org/05vn3ca78', 'en', 1, 'https://ror.org/05vn3ca78 National Chung Hsing University'),
(662, 'https://ror.org/05xszy717', 'en', 1, 'https://ror.org/05xszy717 National Defense Academy of Japan 防衛大学校'),
(663, 'https://ror.org/02bn97g32', 'en', 1, 'https://ror.org/02bn97g32 National Defense Medical Center'),
(664, 'https://ror.org/04zbkyt39', 'en', 1, 'https://ror.org/04zbkyt39 National Hispanic University'),
(665, 'https://ror.org/03bvvnt49', 'en', 1, 'https://ror.org/03bvvnt49 National Taiwan Ocean University'),
(666, 'https://ror.org/00w6bqp33', 'en', 1, 'https://ror.org/00w6bqp33 National University of Health Sciences'),
(667, 'https://ror.org/03xp4dz54', 'en', 1, 'https://ror.org/03xp4dz54 Nebraska Wesleyan University'),
(668, 'https://ror.org/0546wew42', 'en', 1, 'https://ror.org/0546wew42 New Jersey City University'),
(669, 'https://ror.org/016tyxe19', 'en', 1, 'https://ror.org/016tyxe19 New Mexico Highlands University'),
(670, 'https://ror.org/021a7pw18', 'en', 1, 'https://ror.org/021a7pw18 New York City College of Technology'),
(671, 'https://ror.org/0038gz437', 'en', 1, 'https://ror.org/0038gz437 Newman University'),
(672, 'https://ror.org/05jk51a88', 'en', 1, 'https://ror.org/05jk51a88 Nihon University 日本大学'),
(673, 'https://ror.org/030pydv62', 'en', 1, 'https://ror.org/030pydv62 Norfolk State University Université d''État de norfolk'),
(674, 'https://ror.org/004sxt390', 'en', 1, 'https://ror.org/004sxt390 North Park University'),
(675, 'https://ror.org/04edns687', 'en', 1, 'https://ror.org/04edns687 Northeastern Illinois University'),
(676, 'https://ror.org/05maved80', 'en', 1, 'https://ror.org/05maved80 Northwest Missouri State University'),
(677, 'https://ror.org/01bry7z39', 'en', 1, 'https://ror.org/01bry7z39 Northwest Nazarene University'),
(678, 'https://ror.org/049ams583', 'en', 1, 'https://ror.org/049ams583 Northwestern State University Université d''État northwestern'),
(679, 'https://ror.org/042bbge36', 'en', 1, 'https://ror.org/042bbge36 Nova Southeastern University Universidad de Nova Southeastern'),
(680, 'https://ror.org/05rvey468', 'en', 1, 'https://ror.org/05rvey468 Oglethorpe University'),
(681, 'https://ror.org/052963a64', 'en', 1, 'https://ror.org/052963a64 Ohio Northern University'),
(682, 'https://ror.org/04nwm7739', 'en', 1, 'https://ror.org/04nwm7739 Oklahoma Baptist University'),
(683, 'https://ror.org/02bs0cv29', 'en', 1, 'https://ror.org/02bs0cv29 Oklahoma City University'),
(684, 'https://ror.org/0446zdv37', 'en', 1, 'https://ror.org/0446zdv37 Oklahoma Panhandle State University'),
(685, 'https://ror.org/038nb9c73', 'en', 1, 'https://ror.org/038nb9c73 Olivet Nazarene University'),
(686, 'https://ror.org/058hnhf91', 'en', 1, 'https://ror.org/058hnhf91 Oral Roberts University'),
(687, 'https://ror.org/044r07286', 'en', 1, 'https://ror.org/044r07286 Ouachita Baptist University'),
(688, 'https://ror.org/029wb5j17', 'en', 1, 'https://ror.org/029wb5j17 Our Lady of the Lake University'),
(689, 'https://ror.org/04f812k67', 'en', 1, 'https://ror.org/04f812k67 Palo Alto University'),
(690, 'https://ror.org/04ngpga37', 'en', 1, 'https://ror.org/04ngpga37 Park University'),
(691, 'https://ror.org/02k46bn27', 'en', 1, 'https://ror.org/02k46bn27 Pfeiffer University'),
(692, 'https://ror.org/02rsjqy82', 'en', 1, 'https://ror.org/02rsjqy82 Point Loma Nazarene University'),
(693, 'https://ror.org/01e4pq504', 'en', 1, 'https://ror.org/01e4pq504 Portland Community College'),
(694, 'https://ror.org/00yw5v481', 'en', 1, 'https://ror.org/00yw5v481 Prince George''s Community College'),
(695, 'https://ror.org/03a4vma36', 'en', 1, 'https://ror.org/03a4vma36 Queensborough Community College, CUNY'),
(696, 'https://ror.org/03zstcc67', 'en', 1, 'https://ror.org/03zstcc67 Randolph–Macon College'),
(697, 'https://ror.org/01dgn5344', 'en', 1, 'https://ror.org/01dgn5344 Rider University Universidad Rider Université de rider'),
(698, 'https://ror.org/025kav035', 'en', 1, 'https://ror.org/025kav035 Ripon College'),
(699, 'https://ror.org/03r24vd05', 'en', 1, 'https://ror.org/03r24vd05 Robert Morris University Universidad Robert Morris'),
(700, 'https://ror.org/020vmqv16', 'en', 1, 'https://ror.org/020vmqv16 Roosevelt University'),
(701, 'https://ror.org/0405thq08', 'en', 1, 'https://ror.org/0405thq08 Saint Ambrose University Université saint ambroise'),
(702, 'https://ror.org/05q87sg56', 'en', 1, 'https://ror.org/05q87sg56 Saint Joseph''s University Universidad de San José Université saint-joseph de philadelphie'),
(703, 'https://ror.org/04v3sec91', 'en', 1, 'https://ror.org/04v3sec91 Saint Mary''s University of Minnesota'),
(704, 'https://ror.org/03b353k89', 'en', 1, 'https://ror.org/03b353k89 Saint Michael''s College'),
(705, 'https://ror.org/04ws6z706', 'en', 1, 'https://ror.org/04ws6z706 Saint Xavier University'),
(706, 'https://ror.org/03dqzan26', 'en', 1, 'https://ror.org/03dqzan26 Salem University'),
(707, 'https://ror.org/04sxj4848', 'en', 1, 'https://ror.org/04sxj4848 Sarah Lawrence College'),
(708, 'https://ror.org/00mns7k70', 'en', 1, 'https://ror.org/00mns7k70 Savannah State University Université d''État de Savannah'),
(709, 'https://ror.org/02yjrq169', 'en', 1, 'https://ror.org/02yjrq169 Savannah Technical College'),
(710, 'https://ror.org/02gzbg991', 'en', 1, 'https://ror.org/02gzbg991 Seattle Pacific University'),
(711, 'https://ror.org/00aft1q37', 'en', 1, 'https://ror.org/00aft1q37 Sejong University 세종대학교'),
(712, 'https://ror.org/04wm83d45', 'en', 1, 'https://ror.org/04wm83d45 Selma University'),
(713, 'https://ror.org/007tn5k56', 'en', 1, 'https://ror.org/007tn5k56 Seton Hall University'),
(714, 'https://ror.org/049x01c36', 'en', 1, 'https://ror.org/049x01c36 Shaw University'),
(715, 'https://ror.org/01w6wtk13', 'en', 1, 'https://ror.org/01w6wtk13 Shizuoka University 静岡大学'),
(716, 'https://ror.org/05aczzj13', 'en', 1, 'https://ror.org/05aczzj13 Shumei University 秀明大学'),
(717, 'https://ror.org/01v62m802', 'en', 1, 'https://ror.org/01v62m802 Siena College'),
(718, 'https://ror.org/04jjn8965', 'en', 1, 'https://ror.org/04jjn8965 Simpson College'),
(719, 'https://ror.org/00pczg388', 'en', 1, 'https://ror.org/00pczg388 Sinclair Community College'),
(720, 'https://ror.org/02q2dn726', 'no_lang_code', 1, 'https://ror.org/02q2dn726 Sinte Gleska University'),
(721, 'https://ror.org/0369st156', 'en', 1, 'https://ror.org/0369st156 Slippery Rock University'),
(722, 'https://ror.org/017xnm587', 'en', 1, 'https://ror.org/017xnm587 Soongsil University 숭실대학교'),
(723, 'https://ror.org/005ezrx44', 'en', 1, 'https://ror.org/005ezrx44 South-West State University Юго-Западный государственный университет'),
(724, 'https://ror.org/00520ze08', 'en', 1, 'https://ror.org/00520ze08 South Carolina State University'),
(725, 'https://ror.org/010n41y16', 'en', 1, 'https://ror.org/010n41y16 Southeast Missouri State University'),
(726, 'https://ror.org/0531xck41', 'en', 1, 'https://ror.org/0531xck41 Southeastern Louisiana University Universidad del Sudeste de Luisiana'),
(727, 'https://ror.org/01aryec24', 'en', 1, 'https://ror.org/01aryec24 Southeastern Oklahoma State University'),
(728, 'https://ror.org/036sak533', 'en', 1, 'https://ror.org/036sak533 Southern Arkansas University'),
(729, 'https://ror.org/04pyrxz13', 'en', 1, 'https://ror.org/04pyrxz13 Southern California University of Health Sciences'),
(730, 'https://ror.org/04cqs5j56', 'en', 1, 'https://ror.org/04cqs5j56 Southern Illinois University Edwardsville'),
(731, 'https://ror.org/00cckeg37', 'en', 1, 'https://ror.org/00cckeg37 Southern Polytechnic State University'),
(732, 'https://ror.org/05q8e6988', 'en', 1, 'https://ror.org/05q8e6988 Southern University at New Orleans'),
(733, 'https://ror.org/04y71bh49', 'en', 1, 'https://ror.org/04y71bh49 Southern University at Shreveport'),
(734, 'https://ror.org/04gfeaw48', 'en', 1, 'https://ror.org/04gfeaw48 Southern Utah University'),
(735, 'https://ror.org/01y8xtk20', 'en', 1, 'https://ror.org/01y8xtk20 Southwestern Oklahoma State University'),
(736, 'https://ror.org/00sh4ma05', 'en', 1, 'https://ror.org/00sh4ma05 Southwestern Oregon Community College'),
(737, 'https://ror.org/039f7g519', 'en', 1, 'https://ror.org/039f7g519 Springfield Technical Community College'),
(738, 'https://ror.org/05fwyj602', 'en', 1, 'https://ror.org/05fwyj602 St. Jerome''s University'),
(739, 'https://ror.org/05sqd3t97', 'en', 1, 'https://ror.org/05sqd3t97 Sistema universitario estatal de Florida State University System of Florida'),
(740, 'https://ror.org/01efrfk30', 'en', 1, 'https://ror.org/01efrfk30 Stetson University'),
(741, 'https://ror.org/05y50nr98', 'en', 1, 'https://ror.org/05y50nr98 Suffolk University Universidad de Suffolk'),
(742, 'https://ror.org/05e3rkh95', 'en', 1, 'https://ror.org/05e3rkh95 Sweet Briar College'),
(743, 'https://ror.org/02nx5r318', 'en', 1, 'https://ror.org/02nx5r318 College of New Jersey'),
(744, 'https://ror.org/04tft4718', 'no_lang_code', 1, 'https://ror.org/04tft4718 Tamkang University 淡江大學'),
(745, 'https://ror.org/01qtnxn83', 'en', 1, 'https://ror.org/01qtnxn83 Technical University of Nova Scotia'),
(746, 'https://ror.org/043yd1m08', 'en', 1, 'https://ror.org/043yd1m08 The Evergreen State College'),
(747, 'https://ror.org/02tvcev59', 'en', 1, 'https://ror.org/02tvcev59 La Nueva Escuela New School'),
(748, 'https://ror.org/01m006041', 'en', 1, 'https://ror.org/01m006041 Thiel College'),
(749, 'https://ror.org/009p4eg54', 'en', 1, 'https://ror.org/009p4eg54 Tilka Manjhi Bhagalpur University तिलका मांझी भागलपुर विश्वविद्यालय'),
(750, 'https://ror.org/001hv0k59', 'en', 1, 'https://ror.org/001hv0k59 Toyota Technological Institute 豊田工業大学'),
(751, 'https://ror.org/01h4hqc60', 'en', 1, 'https://ror.org/01h4hqc60 Transylvania University'),
(752, 'https://ror.org/029jj9438', 'en', 1, 'https://ror.org/029jj9438 Troy University'),
(753, 'https://ror.org/00zhvdn11', 'en', 1, 'https://ror.org/00zhvdn11 Tunghai University 東海大學'),
(754, 'https://ror.org/0055d0g64', 'en', 1, 'https://ror.org/0055d0g64 Academia de la Fuerza Aérea de los Estados Unidos United States Air Force Academy'),
(755, 'https://ror.org/02pg0e883', 'en', 1, 'https://ror.org/02pg0e883 University of Aizu 会津大学'),
(756, 'https://ror.org/02grymn95', 'en', 1, 'https://ror.org/02grymn95 University of Arkansas – Fort Smith'),
(757, 'https://ror.org/05xn9jy83', 'en', 1, 'https://ror.org/05xn9jy83 University of Arkansas at Monticello'),
(758, 'https://ror.org/03zsjhd07', 'en', 1, 'https://ror.org/03zsjhd07 University of Arkansas at Pine Bluff Université de l''arkansas à pine bluff'),
(759, 'https://ror.org/029bp0k25', 'en', 1, 'https://ror.org/029bp0k25 University of Central Arkansas'),
(760, 'https://ror.org/00v3ak792', 'en', 1, 'https://ror.org/00v3ak792 Universidad de Dallas University of Dallas Université de Dallas'),
(761, 'https://ror.org/02x73b849', 'en', 1, 'https://ror.org/02x73b849 University of Electro-Communications 電気通信大学'),
(762, 'https://ror.org/03yemaq40', 'en', 1, 'https://ror.org/03yemaq40 University of Findlay'),
(763, 'https://ror.org/02mp2av58', 'en', 1, 'https://ror.org/02mp2av58 Universidad de Hawái en Hilo University of Hawaii at Hilo Université d''hawaï à hilo'),
(764, 'https://ror.org/02kg81z20', 'en', 1, 'https://ror.org/02kg81z20 Universidad de La Verne University of La Verne'),
(765, 'https://ror.org/02qeh3c90', 'en', 1, 'https://ror.org/02qeh3c90 University of Louisiana at Monroe Université de Louisiane à Monroe'),
(766, 'https://ror.org/00ydm0027', 'en', 1, 'https://ror.org/00ydm0027 University of Maine at Farmington'),
(767, 'https://ror.org/00e9xa106', 'en', 1, 'https://ror.org/00e9xa106 University of Maine at Machias'),
(768, 'https://ror.org/00nk17n43', 'en', 1, 'https://ror.org/00nk17n43 University of Maine at Presque Isle'),
(769, 'https://ror.org/03b48gv34', 'en', 1, 'https://ror.org/03b48gv34 University of Mary Washington Université de mary washington'),
(770, 'https://ror.org/01hy4qx27', 'en', 1, 'https://ror.org/01hy4qx27 University of Minnesota, Duluth'),
(771, 'https://ror.org/05vzqzh92', 'en', 1, 'https://ror.org/05vzqzh92 University of Minnesota Morris Université du minnesota à morris'),
(772, 'https://ror.org/01w0d5g70', 'en', 1, 'https://ror.org/01w0d5g70 University of Missouri–Kansas City'),
(773, 'https://ror.org/01fd8g905', 'en', 1, 'https://ror.org/01fd8g905 University of Montevallo'),
(774, 'https://ror.org/02n2ava60', 'en', 1, 'https://ror.org/02n2ava60 University of New England'),
(775, 'https://ror.org/0584fj407', 'en', 1, 'https://ror.org/0584fj407 University of North Alabama'),
(776, 'https://ror.org/017c6at71', 'en', 1, 'https://ror.org/017c6at71 University of North Carolina at Asheville'),
(777, 'https://ror.org/0457zbj98', 'en', 1, 'https://ror.org/0457zbj98 University of Oklahoma Health Sciences Center'),
(778, 'https://ror.org/041jw5813', 'en', 1, 'https://ror.org/041jw5813 University of San Carlos'),
(779, 'https://ror.org/001c9gn96', 'en', 1, 'https://ror.org/001c9gn96 University of Science and Arts of Oklahoma'),
(780, 'https://ror.org/05en5nh73', 'en', 1, 'https://ror.org/05en5nh73 University of Seoul 서울시립대학교'),
(781, 'https://ror.org/02d9k9g58', 'en', 1, 'https://ror.org/02d9k9g58 University of South Carolina Aiken'),
(782, 'https://ror.org/05ked8481', 'en', 1, 'https://ror.org/05ked8481 University of South Carolina Beaufort'),
(783, 'https://ror.org/00t9hhv14', 'en', 1, 'https://ror.org/00t9hhv14 University of South Carolina Upstate'),
(784, 'https://ror.org/03ke6tv85', 'en', 1, 'https://ror.org/03ke6tv85 University of Southern Maine'),
(785, 'https://ror.org/03ysk5e42', 'en', 1, 'https://ror.org/03ysk5e42 University of Suwon 수원대학교'),
(786, 'https://ror.org/007h1g065', 'en', 1, 'https://ror.org/007h1g065 Universidad de Tampa University of Tampa'),
(787, 'https://ror.org/01244fm76', 'en', 1, 'https://ror.org/01244fm76 University of Tennessee at Martin'),
(788, 'https://ror.org/01sps7q28', 'en', 1, 'https://ror.org/01sps7q28 The University of Texas Health Science Center at Tyler'),
(789, 'https://ror.org/019kgqr73', 'en', 1, 'https://ror.org/019kgqr73 The University of Texas at Arlington Université du Texas à Arlington'),
(790, 'https://ror.org/051smbs96', 'en', 1, 'https://ror.org/051smbs96 The University of Texas of the Permian Basin'),
(791, 'https://ror.org/044vy1d05', 'en', 1, 'https://ror.org/044vy1d05 Tokushima University 徳島大学'),
(792, 'https://ror.org/03np13864', 'en', 1, 'https://ror.org/03np13864 Universidad de Trinidad y Tobago University of Trinidad and Tobago'),
(793, 'https://ror.org/04wn28048', 'en', 1, 'https://ror.org/04wn28048 University of Tulsa Université de tulsa'),
(794, 'https://ror.org/04scfb908', 'en', 1, 'https://ror.org/04scfb908 Alfred Health'),
(795, 'https://ror.org/02c2f8975', 'en', 1, 'https://ror.org/02c2f8975 University of Ulsan 울산대학교'),
(796, 'https://ror.org/010acrp16', 'en', 1, 'https://ror.org/010acrp16 University of West Alabama'),
(797, 'https://ror.org/01cqxk816', 'en', 1, 'https://ror.org/01cqxk816 University of West Georgia'),
(798, 'https://ror.org/03c8vvr84', 'en', 1, 'https://ror.org/03c8vvr84 University of Western States'),
(799, 'https://ror.org/03mnm0t94', 'en', 1, 'https://ror.org/03mnm0t94 University of Wisconsin–Eau Claire Université du Wisconsin à Eau Claire'),
(800, 'https://ror.org/00x8ccz20', 'en', 1, 'https://ror.org/00x8ccz20 University of Wisconsin–La Crosse Université du Wisconsin–La Crosse'),
(801, 'https://ror.org/05s9f4d27', 'en', 1, 'https://ror.org/05s9f4d27 University of Wisconsin–Parkside Université du Wisconsin–Parkside'),
(802, 'https://ror.org/05sv6pg41', 'en', 1, 'https://ror.org/05sv6pg41 University of Wisconsin–Stevens Point Université du Wisconsin–Stevens Point'),
(803, 'https://ror.org/00z2qhk53', 'en', 1, 'https://ror.org/00z2qhk53 University of Wisconsin–Superior Université du Wisconsin–Superior'),
(804, 'https://ror.org/059x21724', 'en', 1, 'https://ror.org/059x21724 University of Yamanashi 山梨大学'),
(805, 'https://ror.org/037wegn60', 'en', 1, 'https://ror.org/037wegn60 University of the District of Columbia Université du district de columbia'),
(806, 'https://ror.org/044a5dk27', 'en', 1, 'https://ror.org/044a5dk27 Universidad del Verbo Encarnado University of the Incarnate Word Université du verbe incarné'),
(807, 'https://ror.org/05r5k8873', 'en', 1, 'https://ror.org/05r5k8873 Sewanee: The University of the South'),
(808, 'https://ror.org/02jqn4a25', 'en', 1, 'https://ror.org/02jqn4a25 Ursinus College'),
(809, 'https://ror.org/05bx1gz93', 'en', 1, 'https://ror.org/05bx1gz93 Utsunomiya University 宇都宮大学'),
(810, 'https://ror.org/04esvpn06', 'en', 1, 'https://ror.org/04esvpn06 Université d''État de virginie Virginia State University'),
(811, 'https://ror.org/02zwyfg51', 'en', 1, 'https://ror.org/02zwyfg51 Virginia Union University'),
(812, 'https://ror.org/00k5m1279', 'en', 1, 'https://ror.org/00k5m1279 West Virginia University at Parkersburg'),
(813, 'https://ror.org/057nqxc22', 'en', 1, 'https://ror.org/057nqxc22 West Virginia Wesleyan College'),
(814, 'https://ror.org/0446vnd56', 'en', 1, 'https://ror.org/0446vnd56 Western Kentucky University'),
(815, 'https://ror.org/00r5mr697', 'en', 1, 'https://ror.org/00r5mr697 Western New Mexico University'),
(816, 'https://ror.org/03tktyg33', 'en', 1, 'https://ror.org/03tktyg33 Western Oklahoma State College'),
(817, 'https://ror.org/02z310y44', 'en', 1, 'https://ror.org/02z310y44 Wheeling Jesuit University');
INSERT INTO `rors` VALUES
(818, 'https://ror.org/02b50zn53', 'en', 1, 'https://ror.org/02b50zn53 Université de wilberforce Wilberforce University'),
(819, 'https://ror.org/05ktv1y25', 'en', 1, 'https://ror.org/05ktv1y25 William Woods University'),
(820, 'https://ror.org/05japer20', 'en', 1, 'https://ror.org/05japer20 Wilson College'),
(821, 'https://ror.org/049yc0897', 'en', 1, 'https://ror.org/049yc0897 Winston-Salem State University'),
(822, 'https://ror.org/04mpzkf73', 'en', 1, 'https://ror.org/04mpzkf73 Winthrop University'),
(823, 'https://ror.org/015a1ak54', 'en', 1, 'https://ror.org/015a1ak54 York College, City University of New York'),
(824, 'https://ror.org/038zf2n28', 'en', 1, 'https://ror.org/038zf2n28 Youngstown State University'),
(825, 'https://ror.org/04epb4p87', 'en', 1, 'https://ror.org/04epb4p87 Zhejiang Chinese Medical University 浙江中医药大学'),
(826, 'https://ror.org/03kpvby98', 'en', 1, 'https://ror.org/03kpvby98 MRC Unit for Lifelong Health and Ageing'),
(827, 'https://ror.org/009sa0g06', 'en', 1, 'https://ror.org/009sa0g06 Royal Liverpool and Broadgreen University Hospital NHS Trust'),
(828, 'https://ror.org/0587whv30', 'no_lang_code', 1, 'https://ror.org/0587whv30 Nexeon (United Kingdom)'),
(829, 'https://ror.org/02dqqj223', 'en', 1, 'https://ror.org/02dqqj223 East Kent Hospitals University NHS Foundation Trust'),
(830, 'https://ror.org/0346ycw92', 'no_lang_code', 1, 'https://ror.org/0346ycw92 Saiseikai Central Hospital 東京都済生会中央病院'),
(831, 'https://ror.org/04z9w5078', 'no_lang_code', 1, 'https://ror.org/04z9w5078 Xerox (Canada)'),
(832, 'https://ror.org/055mfda29', 'en', 1, 'https://ror.org/055mfda29 Earth and Space Research'),
(833, 'https://ror.org/028vxwa22', 'en', 1, 'https://ror.org/028vxwa22 Kyoto Prefectural University of Medicine 京都府立医科大学'),
(834, 'https://ror.org/02crz6e12', 'en', 1, 'https://ror.org/02crz6e12 Singapore Eye Research Institute'),
(835, 'https://ror.org/01jdekv92', 'en', 1, 'https://ror.org/01jdekv92 Berkeley Geochronology Center'),
(836, 'https://ror.org/0489f6q08', 'en', 1, 'https://ror.org/0489f6q08 Cardiff and Vale University Health Board'),
(837, 'https://ror.org/00c8v4891', 'en', 1, 'https://ror.org/00c8v4891 Long Island Jewish Medical Center'),
(838, 'https://ror.org/00z9zsj19', 'en', 1, 'https://ror.org/00z9zsj19 Butler Hospital'),
(839, 'https://ror.org/022k36x48', 'no_lang_code', 1, 'https://ror.org/022k36x48 Taylor Wimpey (United Kingdom)'),
(840, 'https://ror.org/04ywg3445', 'no_lang_code', 1, 'https://ror.org/04ywg3445 New England Biolabs (United States)'),
(841, 'https://ror.org/012zkqp76', 'en', 1, 'https://ror.org/012zkqp76 Delaware Division of Public Health'),
(842, 'https://ror.org/035z6xf33', 'en', 1, 'https://ror.org/035z6xf33 Oklahoma Medical Research Foundation'),
(843, 'https://ror.org/02c8hpe74', 'en', 1, 'https://ror.org/02c8hpe74 James J. Peters VA Medical Center'),
(844, 'https://ror.org/0516ah480', 'en', 1, 'https://ror.org/0516ah480 The Graduate University for Advanced Studies, SOKENDAI 総合研究大学院大学'),
(845, 'https://ror.org/05tmv0d13', 'en', 1, 'https://ror.org/05tmv0d13 American Society of Civil Engineers'),
(846, 'https://ror.org/038mfx688', 'en', 1, 'https://ror.org/038mfx688 National Academy of Sciences'),
(847, 'https://ror.org/05a3jmv43', 'no_lang_code', 1, 'https://ror.org/05a3jmv43 Format International Ltd'),
(848, 'https://ror.org/017b7j426', 'no_lang_code', 1, 'https://ror.org/017b7j426 Altera (United States)'),
(849, 'https://ror.org/04npy5k94', 'no_lang_code', 1, 'https://ror.org/04npy5k94 Intracom Telecom (Greece)'),
(850, 'https://ror.org/00zfzef50', 'en', 1, 'https://ror.org/00zfzef50 National Development and Research Institutes'),
(851, 'https://ror.org/03d58dr58', 'en', 1, 'https://ror.org/03d58dr58 National Neuroscience Institute'),
(852, 'https://ror.org/03ezzqh77', 'en', 1, 'https://ror.org/03ezzqh77 Iwate Biotechnology Research Center 財団法人 岩手生物工学研究センター'),
(853, 'https://ror.org/04cg70g73', 'en', 1, 'https://ror.org/04cg70g73 Atmospheric and Environmental Research'),
(854, 'https://ror.org/01ar9e455', 'en', 1, 'https://ror.org/01ar9e455 The Aerospace Corporation'),
(855, 'https://ror.org/02kk6xv61', 'en', 1, 'https://ror.org/02kk6xv61 Creative England'),
(856, 'https://ror.org/03wkg3b53', 'en', 1, 'https://ror.org/03wkg3b53 National Eye Institute'),
(857, 'https://ror.org/05rad4t93', 'en', 1, 'https://ror.org/05rad4t93 Gordon Research Conferences'),
(858, 'https://ror.org/05p48p517', 'en', 1, 'https://ror.org/05p48p517 Northern California Institute for Research and Education'),
(859, 'https://ror.org/00baak391', 'en', 1, 'https://ror.org/00baak391 National Human Genome Research Institute'),
(860, 'https://ror.org/01jfr3w16', 'en', 1, 'https://ror.org/01jfr3w16 Pacific Institute For Research and Evaluation'),
(861, 'https://ror.org/04g43x563', 'en', 1, 'https://ror.org/04g43x563 Minnesota Department of Health'),
(862, 'https://ror.org/02ye8a398', 'en', 1, 'https://ror.org/02ye8a398 Keystone Symposia On Molecular and Cellular Biology'),
(863, 'https://ror.org/0060t0j89', 'en', 1, 'https://ror.org/0060t0j89 Biblioteca Nacional de Medicina United States National Library of Medicine'),
(864, 'https://ror.org/01q2y2d42', 'en', 1, 'https://ror.org/01q2y2d42 Departamento de Salud y Servicios Sociales de los Estados Unidos Département de la santé et des services sociaux des États-unis State of Maine Department of Health and Human Services'),
(865, 'https://ror.org/032m4kp77', 'en', 1, 'https://ror.org/032m4kp77 Iowa Department of Public Health'),
(866, 'https://ror.org/03cqd3e64', 'en', 1, 'https://ror.org/03cqd3e64 Connecticut Department of Public Health'),
(867, 'https://ror.org/00j2wht38', 'en', 1, 'https://ror.org/00j2wht38 Virginia Department of Health'),
(868, 'https://ror.org/034de1n65', 'en', 1, 'https://ror.org/034de1n65 Utah Department of Health'),
(869, 'https://ror.org/05j91v252', 'en', 1, 'https://ror.org/05j91v252 Oregon Research Institute'),
(870, 'https://ror.org/01mh1c318', 'en', 1, 'https://ror.org/01mh1c318 Federation of American Societies for Experimental Biology'),
(871, 'https://ror.org/00kgerq53', 'en', 1, 'https://ror.org/00kgerq53 Hawaii Department of Health'),
(872, 'https://ror.org/044em4v11', 'en', 1, 'https://ror.org/044em4v11 Tennessee Department of Mental Health and Substance Abuse Services'),
(873, 'https://ror.org/00372qc85', 'en', 1, 'https://ror.org/00372qc85 National Institute of Biomedical Imaging and Bioengineering'),
(874, 'https://ror.org/026s99n34', 'en', 1, 'https://ror.org/026s99n34 West Virginia State Department of Health and Human Resources'),
(875, 'https://ror.org/03tds6380', 'en', 1, 'https://ror.org/03tds6380 Ohio Department of Mental Health & Addiction Services'),
(876, 'https://ror.org/00ra1fg11', 'en', 1, 'https://ror.org/00ra1fg11 Pennsylvania Department of Health'),
(877, 'https://ror.org/045rcvm30', 'en', 1, 'https://ror.org/045rcvm30 Kentucky Cabinet For Health and Family Services'),
(878, 'https://ror.org/03r1zz567', 'en', 1, 'https://ror.org/03r1zz567 Idaho Department of Health and Welfare'),
(879, 'https://ror.org/038qbqz41', 'en', 1, 'https://ror.org/038qbqz41 Lovelace Respiratory Research Institute'),
(880, 'https://ror.org/03k25vb36', 'en', 1, 'https://ror.org/03k25vb36 Indiana State Department of Education'),
(881, 'https://ror.org/00xpcm295', 'en', 1, 'https://ror.org/00xpcm295 Wyoming State Department of Health'),
(882, 'https://ror.org/03m7azy07', 'en', 1, 'https://ror.org/03m7azy07 Nebraska Department of Health and Human Services'),
(883, 'https://ror.org/02sjnfb25', 'en', 1, 'https://ror.org/02sjnfb25 Versiti Blood Center of Wisconsin'),
(884, 'https://ror.org/0258b0610', 'en', 1, 'https://ror.org/0258b0610 Kansas Department of Health and Environment'),
(885, 'https://ror.org/04rqpth59', 'en', 1, 'https://ror.org/04rqpth59 Boston Biomedical Research Institute'),
(886, 'https://ror.org/027fvqp63', 'no_lang_code', 1, 'https://ror.org/027fvqp63 Emmes (United States)'),
(887, 'https://ror.org/006gvnw06', 'en', 1, 'https://ror.org/006gvnw06 North Dakota Department of Health'),
(888, 'https://ror.org/04qjnvx31', 'en', 1, 'https://ror.org/04qjnvx31 Brentwood Biomedical Research Institute'),
(889, 'https://ror.org/032cjfs80', 'en', 1, 'https://ror.org/032cjfs80 Mind Research Network'),
(890, 'https://ror.org/04qm8ac48', 'en', 1, 'https://ror.org/04qm8ac48 Philadelphia Department of Public Health'),
(891, 'https://ror.org/047k06737', 'en', 1, 'https://ror.org/047k06737 South Dakota Department of Health'),
(892, 'https://ror.org/00gdxq105', 'en', 1, 'https://ror.org/00gdxq105 Vermont Department of Mental Health'),
(893, 'https://ror.org/03t7m8092', 'en', 1, 'https://ror.org/03t7m8092 Public Health Foundation Enterprises'),
(894, 'https://ror.org/006j1e620', 'en', 1, 'https://ror.org/006j1e620 Georgia Department of Human Services'),
(895, 'https://ror.org/04y6m3r89', 'en', 1, 'https://ror.org/04y6m3r89 Arkansas State Department of Human Services'),
(896, 'https://ror.org/00wt7xg39', 'no_lang_code', 1, 'https://ror.org/00wt7xg39 Westat (United States)'),
(897, 'https://ror.org/04jdq2t93', 'en', 1, 'https://ror.org/04jdq2t93 Aaron Diamond AIDS Research Center'),
(898, 'https://ror.org/00g578s43', 'no_lang_code', 1, 'https://ror.org/00g578s43 Oregon Center For Applied Science (United States)'),
(899, 'https://ror.org/04x0r0b44', 'en', 1, 'https://ror.org/04x0r0b44 Connecticut Department of Mental Health and Addiction Services'),
(900, 'https://ror.org/02fppms28', 'en', 1, 'https://ror.org/02fppms28 Missouri Department of Mental Health'),
(901, 'https://ror.org/03s9ada67', 'en', 1, 'https://ror.org/03s9ada67 HealthPartners'),
(902, 'https://ror.org/02p599b54', 'en', 1, 'https://ror.org/02p599b54 Treatment Research Institute'),
(903, 'https://ror.org/022xmez67', 'no_lang_code', 1, 'https://ror.org/022xmez67 Microbiotix (United States)'),
(904, 'https://ror.org/030ma0n95', 'en', 1, 'https://ror.org/030ma0n95 Ralph H. Johnson VA Medical Center'),
(905, 'https://ror.org/00ek9j693', 'en', 1, 'https://ror.org/00ek9j693 Bloodworks Northwest'),
(906, 'https://ror.org/00190t495', 'en', 1, 'https://ror.org/00190t495 National Center for Complementary and Integrative Health'),
(907, 'https://ror.org/03jv28t80', 'no_lang_code', 1, 'https://ror.org/03jv28t80 Lynntech (United States)'),
(908, 'https://ror.org/00j4k1h63', 'en', 1, 'https://ror.org/00j4k1h63 National Institute of Environmental Health Sciences'),
(909, 'https://ror.org/03bx60s49', 'en', 1, 'https://ror.org/03bx60s49 Cancer Prevention Institute of California'),
(910, 'https://ror.org/05jr1e079', 'no_lang_code', 1, 'https://ror.org/05jr1e079 Advanced Medical Electronics (United States)'),
(911, 'https://ror.org/03n2ay196', 'en', 1, 'https://ror.org/03n2ay196 South Texas Veterans Health Care System'),
(912, 'https://ror.org/030g3hg75', 'en', 1, 'https://ror.org/030g3hg75 Lankenau Institute for Medical Research'),
(913, 'https://ror.org/036a0e562', 'en', 1, 'https://ror.org/036a0e562 Baltimore VA Medical Center'),
(914, 'https://ror.org/025chrz76', 'en', 1, 'https://ror.org/025chrz76 Marshfield Clinic'),
(915, 'https://ror.org/00j899309', 'no_lang_code', 1, 'https://ror.org/00j899309 Inflexxion (United States)'),
(916, 'https://ror.org/030p45079', 'no_lang_code', 1, 'https://ror.org/030p45079 Cleveland Medical Devices'),
(917, 'https://ror.org/01y3zfr79', 'en', 1, 'https://ror.org/01y3zfr79 National Institute of Nursing Research'),
(918, 'https://ror.org/04wnwd012', 'en', 1, 'https://ror.org/04wnwd012 Education Development Center'),
(919, 'https://ror.org/00nr17z89', 'en', 1, 'https://ror.org/00nr17z89 VA Palo Alto Health Care System'),
(920, 'https://ror.org/04xsjmh40', 'en', 1, 'https://ror.org/04xsjmh40 American Society for Microbiology'),
(921, 'https://ror.org/00wfvxt55', 'en', 1, 'https://ror.org/00wfvxt55 Minnesota Department of Human Services'),
(922, 'https://ror.org/04q48ey07', 'en', 1, 'https://ror.org/04q48ey07 National Institute of General Medical Sciences'),
(923, 'https://ror.org/05j752d14', 'en', 1, 'https://ror.org/05j752d14 McLaughlin Research Institute'),
(924, 'https://ror.org/0226env10', 'no_lang_code', 1, 'https://ror.org/0226env10 Sociometrics Corporation'),
(925, 'https://ror.org/007fyq698', 'en', 1, 'https://ror.org/007fyq698 VA Salt Lake City Healthcare System'),
(926, 'https://ror.org/0242qs713', 'en', 1, 'https://ror.org/0242qs713 Birmingham VA Medical Center'),
(927, 'https://ror.org/044fz2011', 'en', 1, 'https://ror.org/044fz2011 Rhode Island Department of Behavioral Healthcare, Developmental Disabilities and Hospitals'),
(928, 'https://ror.org/03x0d4x24', 'en', 1, 'https://ror.org/03x0d4x24 Pacific Northwest Diabetes Research Institute'),
(929, 'https://ror.org/02fnpv153', 'en', 1, 'https://ror.org/02fnpv153 American Association For Cancer Research'),
(930, 'https://ror.org/00cb9nn43', 'en', 1, 'https://ror.org/00cb9nn43 American Dental Association'),
(931, 'https://ror.org/020hchp05', 'en', 1, 'https://ror.org/020hchp05 Integrated Laboratory Systems, Inc.'),
(932, 'https://ror.org/024daed65', 'no_lang_code', 1, 'https://ror.org/024daed65 Social and Scientific Systems (United States)'),
(933, 'https://ror.org/057z0pt68', 'en', 1, 'https://ror.org/057z0pt68 Kansas Department for Children and Families'),
(934, 'https://ror.org/01b2wv937', 'en', 1, 'https://ror.org/01b2wv937 New York State Office of Mental Health'),
(935, 'https://ror.org/00qvx5329', 'en', 1, 'https://ror.org/00qvx5329 Doheny Eye Institute'),
(936, 'https://ror.org/05ngnkr69', 'no_lang_code', 1, 'https://ror.org/05ngnkr69 Ambergen (United States)'),
(937, 'https://ror.org/01ekg2j77', 'en', 1, 'https://ror.org/01ekg2j77 Blood Systems Research Institute'),
(938, 'https://ror.org/03nysxh02', 'no_lang_code', 1, 'https://ror.org/03nysxh02 NovoMedix (United States)'),
(939, 'https://ror.org/03ndmsg87', 'no_lang_code', 1, 'https://ror.org/03ndmsg87 Charles River Laboratories (United States)'),
(940, 'https://ror.org/0077tm911', 'en', 1, 'https://ror.org/0077tm911 Iowa Department of Human Services'),
(941, 'https://ror.org/05xf34x41', 'en', 1, 'https://ror.org/05xf34x41 South Carolina State Department of Mental Health'),
(942, 'https://ror.org/020k7fn51', 'no_lang_code', 1, 'https://ror.org/020k7fn51 Information Management Services'),
(943, 'https://ror.org/04d7ez939', 'en', 1, 'https://ror.org/04d7ez939 VA Eastern Colorado Health Care System'),
(944, 'https://ror.org/05p1phv38', 'en', 1, 'https://ror.org/05p1phv38 Huntington Medical Research Institutes'),
(945, 'https://ror.org/05tby3y60', 'en', 1, 'https://ror.org/05tby3y60 Judge Baker Children''s Center'),
(946, 'https://ror.org/00rt1d436', 'en', 1, 'https://ror.org/00rt1d436 American Psychological Association'),
(947, 'https://ror.org/03ywwzv91', 'no_lang_code', 1, 'https://ror.org/03ywwzv91 3C Institute'),
(948, 'https://ror.org/01atr9m08', 'no_lang_code', 1, 'https://ror.org/01atr9m08 Biotex (United States)'),
(949, 'https://ror.org/010ezwq65', 'no_lang_code', 1, 'https://ror.org/010ezwq65 Praxis (United States)'),
(950, 'https://ror.org/0092qhe76', 'no_lang_code', 1, 'https://ror.org/0092qhe76 Sanaria'),
(951, 'https://ror.org/043mrw780', 'en', 1, 'https://ror.org/043mrw780 Institute For Community Research'),
(952, 'https://ror.org/03fhjvs31', 'en', 1, 'https://ror.org/03fhjvs31 Center for Molecular Medicine and Immunology'),
(953, 'https://ror.org/05h450y11', 'no_lang_code', 1, 'https://ror.org/05h450y11 Talaria (United States)'),
(954, 'https://ror.org/04ba73c73', 'no_lang_code', 1, 'https://ror.org/04ba73c73 MC3 (United States)'),
(955, 'https://ror.org/04kg3w865', 'no_lang_code', 1, 'https://ror.org/04kg3w865 Phylonix (United States)'),
(956, 'https://ror.org/02tvg0w73', 'en', 1, 'https://ror.org/02tvg0w73 Riverside Research Institute'),
(957, 'https://ror.org/00p82hn55', 'en', 1, 'https://ror.org/00p82hn55 Salus University'),
(958, 'https://ror.org/00rkxs190', 'no_lang_code', 1, 'https://ror.org/00rkxs190 TDA Research (United States)'),
(959, 'https://ror.org/057jp7h82', 'en', 1, 'https://ror.org/057jp7h82 IIT Research Institute'),
(960, 'https://ror.org/00jjvav84', 'en', 1, 'https://ror.org/00jjvav84 The Hamner Institutes for Health Sciences'),
(961, 'https://ror.org/004jktf35', 'en', 1, 'https://ror.org/004jktf35 Swedish Medical Center'),
(962, 'https://ror.org/02tbz8k15', 'no_lang_code', 1, 'https://ror.org/02tbz8k15 University Research Co (United States)'),
(963, 'https://ror.org/006xyf785', 'en', 1, 'https://ror.org/006xyf785 James A. Haley Veterans'' Hospital'),
(964, 'https://ror.org/0493hgw16', 'en', 1, 'https://ror.org/0493hgw16 National Institute on Minority Health and Health Disparities'),
(965, 'https://ror.org/03p09n514', 'no_lang_code', 1, 'https://ror.org/03p09n514 Danya International, Inc.'),
(966, 'https://ror.org/00hnyb151', 'no_lang_code', 1, 'https://ror.org/00hnyb151 Luna Innovations (United States)'),
(967, 'https://ror.org/0305ndp35', 'no_lang_code', 1, 'https://ror.org/0305ndp35 MatTek Corporation (United States)'),
(968, 'https://ror.org/0512xad50', 'en', 1, 'https://ror.org/0512xad50 American Academy of Pediatrics'),
(969, 'https://ror.org/04can6445', 'no_lang_code', 1, 'https://ror.org/04can6445 P2D Bioscience (United States)'),
(970, 'https://ror.org/031b7yx83', 'no_lang_code', 1, 'https://ror.org/031b7yx83 Lucigen Corporation'),
(971, 'https://ror.org/03wgfnb71', 'no_lang_code', 1, 'https://ror.org/03wgfnb71 Barron Associates (United States)'),
(972, 'https://ror.org/037pmhh38', 'no_lang_code', 1, 'https://ror.org/037pmhh38 Physical Optics Corporation'),
(973, 'https://ror.org/05q2e1368', 'no_lang_code', 1, 'https://ror.org/05q2e1368 ISA Associate'),
(974, 'https://ror.org/00s31qp90', 'en', 1, 'https://ror.org/00s31qp90 Operation PAR'),
(975, 'https://ror.org/05v7v1303', 'no_lang_code', 1, 'https://ror.org/05v7v1303 IRIS Educational Media'),
(976, 'https://ror.org/02843s885', 'en', 1, 'https://ror.org/02843s885 Behavioral Tech Research, Inc.'),
(977, 'https://ror.org/006x9gw30', 'no_lang_code', 1, 'https://ror.org/006x9gw30 Koronis Biomedical Technologies (United States)'),
(978, 'https://ror.org/01q2nz307', 'en', 1, 'https://ror.org/01q2nz307 Baystate Medical Center'),
(979, 'https://ror.org/01ha6bm93', 'no_lang_code', 1, 'https://ror.org/01ha6bm93 Progenra (United States)'),
(980, 'https://ror.org/03w1tbe79', 'no_lang_code', 1, 'https://ror.org/03w1tbe79 Molecular GPS Technologies (United States)'),
(981, 'https://ror.org/03thhhv76', 'en', 1, 'https://ror.org/03thhhv76 American Type Culture Collection'),
(982, 'https://ror.org/041mbwk52', 'no_lang_code', 1, 'https://ror.org/041mbwk52 Fisher Bioservices (United States)'),
(983, 'https://ror.org/000rgm762', 'en', 1, 'https://ror.org/000rgm762 VA Connecticut Healthcare System'),
(984, 'https://ror.org/02wdwsb32', 'no_lang_code', 1, 'https://ror.org/02wdwsb32 GenVec'),
(985, 'https://ror.org/02dktng58', 'en', 1, 'https://ror.org/02dktng58 Institute for Scientific Analysis'),
(986, 'https://ror.org/03hqrv489', 'no_lang_code', 1, 'https://ror.org/03hqrv489 Advanced Liquid Logic'),
(987, 'https://ror.org/05fk0de79', 'en', 1, 'https://ror.org/05fk0de79 Bassett Medical Center'),
(988, 'https://ror.org/04jkk6t02', 'no_lang_code', 1, 'https://ror.org/04jkk6t02 IQuum (United States)'),
(989, 'https://ror.org/02hsq0e05', 'no_lang_code', 1, 'https://ror.org/02hsq0e05 EIC Laboratories'),
(990, 'https://ror.org/01kbw1w05', 'no_lang_code', 1, 'https://ror.org/01kbw1w05 Infinite Biomedical Technologies (United States)'),
(991, 'https://ror.org/04wwbpd10', 'no_lang_code', 1, 'https://ror.org/04wwbpd10 Biomedware (United States)'),
(992, 'https://ror.org/00yeama42', 'no_lang_code', 1, 'https://ror.org/00yeama42 Compact Membrane Systems (United States)'),
(993, 'https://ror.org/05eewjw07', 'no_lang_code', 1, 'https://ror.org/05eewjw07 Bellbrook Labs (United States)'),
(994, 'https://ror.org/055gq1960', 'no_lang_code', 1, 'https://ror.org/055gq1960 Ada Technologies (United States)'),
(995, 'https://ror.org/0586a5g03', 'no_lang_code', 1, 'https://ror.org/0586a5g03 Clinical Tools, Inc.'),
(996, 'https://ror.org/05q9t1y70', 'no_lang_code', 1, 'https://ror.org/05q9t1y70 Siga Technologies (United States)'),
(997, 'https://ror.org/02zy72z44', 'no_lang_code', 1, 'https://ror.org/02zy72z44 Profectus Biosciences (United States)'),
(998, 'https://ror.org/02mx8nz45', 'en', 1, 'https://ror.org/02mx8nz45 Bradley Hospital'),
(999, 'https://ror.org/0402ejh63', 'en', 1, 'https://ror.org/0402ejh63 La Jolla Institute For Molecular Medicine'),
(1000, 'https://ror.org/0119j8n26', 'no_lang_code', 1, 'https://ror.org/0119j8n26 Glsynthesis'),
(1001, 'https://ror.org/056a2fb24', 'no_lang_code', 1, 'https://ror.org/056a2fb24 Nanoprobes (United States)'),
(1002, 'https://ror.org/0287vk548', 'no_lang_code', 1, 'https://ror.org/0287vk548 Sequella (United States)'),
(1003, 'https://ror.org/04rxn4y96', 'no_lang_code', 1, 'https://ror.org/04rxn4y96 Cell and Tissue Systems (United States)'),
(1004, 'https://ror.org/050qew682', 'no_lang_code', 1, 'https://ror.org/050qew682 Bolder Biotechnology, Inc.'),
(1005, 'https://ror.org/05gr5bv62', 'no_lang_code', 1, 'https://ror.org/05gr5bv62 Vala Sciences (United States)'),
(1006, 'https://ror.org/042ckra75', 'en', 1, 'https://ror.org/042ckra75 Research Foundation For Mental Hygiene'),
(1007, 'https://ror.org/01es3w453', 'no_lang_code', 1, 'https://ror.org/01es3w453 Northwest Media (United States)'),
(1008, 'https://ror.org/05meqs994', 'no_lang_code', 1, 'https://ror.org/05meqs994 Innovation Research and Training'),
(1009, 'https://ror.org/009q6vg88', 'no_lang_code', 1, 'https://ror.org/009q6vg88 Virogenomics BioDevelopment (United States)'),
(1010, 'https://ror.org/01qe4gr33', 'en', 1, 'https://ror.org/01qe4gr33 Family and Social Services Administration'),
(1011, 'https://ror.org/03hbd7c15', 'no_lang_code', 1, 'https://ror.org/03hbd7c15 Therapeutics Systems Research Laboratories (United States)'),
(1012, 'https://ror.org/04dwjqq87', 'en', 1, 'https://ror.org/04dwjqq87 Tanglewood Research'),
(1013, 'https://ror.org/019x0cx75', 'no_lang_code', 1, 'https://ror.org/019x0cx75 Science and Engineering Services (United States)'),
(1014, 'https://ror.org/03vnftm46', 'no_lang_code', 1, 'https://ror.org/03vnftm46 Maxwell Sensors'),
(1015, 'https://ror.org/02t4f0726', 'no_lang_code', 1, 'https://ror.org/02t4f0726 Radikal Therapeutics'),
(1016, 'https://ror.org/02pkd6e53', 'no_lang_code', 1, 'https://ror.org/02pkd6e53 Deschutes Research'),
(1017, 'https://ror.org/03zx0nf33', 'en', 1, 'https://ror.org/03zx0nf33 AcademyHealth'),
(1018, 'https://ror.org/04b3jmc64', 'en', 1, 'https://ror.org/04b3jmc64 Social Sciences Innovations'),
(1019, 'https://ror.org/03vj41343', 'en', 1, 'https://ror.org/03vj41343 San Francicso Brain Research Institute & SAM Technology'),
(1020, 'https://ror.org/0425pcn39', 'no_lang_code', 1, 'https://ror.org/0425pcn39 NeuroComp Systems (United States)'),
(1021, 'https://ror.org/01b330649', 'no_lang_code', 1, 'https://ror.org/01b330649 Nova Research Company (United States)'),
(1022, 'https://ror.org/03eksqx74', 'en', 1, 'https://ror.org/03eksqx74 Winthrop-University Hospital'),
(1023, 'https://ror.org/020afzk37', 'no_lang_code', 1, 'https://ror.org/020afzk37 Mirus Bio (United States)'),
(1024, 'https://ror.org/04x16j349', 'no_lang_code', 1, 'https://ror.org/04x16j349 Invotek'),
(1025, 'https://ror.org/037nakk48', 'no_lang_code', 1, 'https://ror.org/037nakk48 Pinnacle Technology'),
(1026, 'https://ror.org/05pvryz52', 'no_lang_code', 1, 'https://ror.org/05pvryz52 IQ Solutions'),
(1027, 'https://ror.org/004fmj330', 'no_lang_code', 1, 'https://ror.org/004fmj330 Technical Resources International (United States)'),
(1028, 'https://ror.org/053v1pf86', 'no_lang_code', 1, 'https://ror.org/053v1pf86 Biomedical Development Corporation'),
(1029, 'https://ror.org/01ans1m53', 'no_lang_code', 1, 'https://ror.org/01ans1m53 SomaGenics (United States)'),
(1030, 'https://ror.org/005yg7304', 'no_lang_code', 1, 'https://ror.org/005yg7304 STAR Analytical Services'),
(1031, 'https://ror.org/05bjm5v11', 'no_lang_code', 1, 'https://ror.org/05bjm5v11 Sibtech (United States)'),
(1032, 'https://ror.org/05kwh9e63', 'no_lang_code', 1, 'https://ror.org/05kwh9e63 Adenosine Therapeutics (United States)'),
(1033, 'https://ror.org/01x9g5g52', 'no_lang_code', 1, 'https://ror.org/01x9g5g52 Ension'),
(1034, 'https://ror.org/04xdbp773', 'no_lang_code', 1, 'https://ror.org/04xdbp773 Academic Edge'),
(1035, 'https://ror.org/05k8nw239', 'no_lang_code', 1, 'https://ror.org/05k8nw239 Western Research Company, Inc.'),
(1036, 'https://ror.org/015nmh932', 'no_lang_code', 1, 'https://ror.org/015nmh932 Kai Research (United States)'),
(1037, 'https://ror.org/03c23hy31', 'no_lang_code', 1, 'https://ror.org/03c23hy31 One Cell Systems (United States)'),
(1038, 'https://ror.org/056rz0f32', 'no_lang_code', 1, 'https://ror.org/056rz0f32 Virtually Better'),
(1039, 'https://ror.org/000rxe202', 'no_lang_code', 1, 'https://ror.org/000rxe202 Medical Decision Logic'),
(1040, 'https://ror.org/0284e2q78', 'en', 1, 'https://ror.org/0284e2q78 American Red Cross Croix-rouge américaine Cruz Roja Americana'),
(1041, 'https://ror.org/02adcah05', 'no_lang_code', 1, 'https://ror.org/02adcah05 Doty Scientific (United States)'),
(1042, 'https://ror.org/003g7k569', 'no_lang_code', 1, 'https://ror.org/003g7k569 Litron Laboratories (United States)'),
(1043, 'https://ror.org/02ya5qg51', 'no_lang_code', 1, 'https://ror.org/02ya5qg51 Electrosonics Medical'),
(1044, 'https://ror.org/04wd31514', 'no_lang_code', 1, 'https://ror.org/04wd31514 CFD Research Corporation (United States)'),
(1045, 'https://ror.org/00h7y2d26', 'no_lang_code', 1, 'https://ror.org/00h7y2d26 Sensimetrics Corporation'),
(1046, 'https://ror.org/03jv45898', 'no_lang_code', 1, 'https://ror.org/03jv45898 Aphios Corporation'),
(1047, 'https://ror.org/02yyv4c82', 'no_lang_code', 1, 'https://ror.org/02yyv4c82 Spire Corporation (United States)'),
(1048, 'https://ror.org/02x3erj71', 'no_lang_code', 1, 'https://ror.org/02x3erj71 Personal Improvement Computer Systems'),
(1049, 'https://ror.org/02ccwf677', 'no_lang_code', 1, 'https://ror.org/02ccwf677 Proportional Technologies'),
(1050, 'https://ror.org/006c6a937', 'no_lang_code', 1, 'https://ror.org/006c6a937 Intelligent Hearing Systems (United States)'),
(1051, 'https://ror.org/032ppma22', 'en', 1, 'https://ror.org/032ppma22 American Academy of Orthopaedic Surgeons'),
(1052, 'https://ror.org/02m1efx83', 'no_lang_code', 1, 'https://ror.org/02m1efx83 Taconic (United States)'),
(1053, 'https://ror.org/00m9c2804', 'en', 1, 'https://ror.org/00m9c2804 Philadelphia College of Osteopathic Medicine'),
(1054, 'https://ror.org/007jxr441', 'en', 1, 'https://ror.org/007jxr441 Society For Developmental Biology'),
(1055, 'https://ror.org/04dzpzw79', 'en', 1, 'https://ror.org/04dzpzw79 National Health Promotion Associates'),
(1056, 'https://ror.org/04mszwh44', 'en', 1, 'https://ror.org/04mszwh44 Gerontological Society of America'),
(1057, 'https://ror.org/01ghsr491', 'no_lang_code', 1, 'https://ror.org/01ghsr491 Trevigen'),
(1058, 'https://ror.org/02wxzt832', 'no_lang_code', 1, 'https://ror.org/02wxzt832 Echelon Biosciences'),
(1059, 'https://ror.org/01na5rp93', 'no_lang_code', 1, 'https://ror.org/01na5rp93 Bioqual'),
(1060, 'https://ror.org/001rzdq81', 'no_lang_code', 1, 'https://ror.org/001rzdq81 State of The Art'),
(1061, 'https://ror.org/03vgdd632', 'no_lang_code', 1, 'https://ror.org/03vgdd632 Ichor Medical Systems (United States)'),
(1062, 'https://ror.org/02e0bfh77', 'no_lang_code', 1, 'https://ror.org/02e0bfh77 Bio Chem Analysis Corporation (United States)'),
(1063, 'https://ror.org/057ays557', 'no_lang_code', 1, 'https://ror.org/057ays557 Kestrel Corporation'),
(1064, 'https://ror.org/04aj4sh46', 'en', 1, 'https://ror.org/04aj4sh46 Brookings Institution Institución Brookings'),
(1065, 'https://ror.org/026dp0v66', 'en', 1, 'https://ror.org/026dp0v66 Union for International Cancer Control Union internationale contre le cancer'),
(1066, 'https://ror.org/00dv9aw81', 'no_lang_code', 1, 'https://ror.org/00dv9aw81 Experimental Pathology Laboratories'),
(1067, 'https://ror.org/0252jr437', 'no_lang_code', 1, 'https://ror.org/0252jr437 Starks Associates'),
(1068, 'https://ror.org/043dm5251', 'no_lang_code', 1, 'https://ror.org/043dm5251 Microfab Technologies (United States)'),
(1069, 'https://ror.org/01ckz8750', 'no_lang_code', 1, 'https://ror.org/01ckz8750 Lickenbrock'),
(1070, 'https://ror.org/05jv5t769', 'en', 1, 'https://ror.org/05jv5t769 Eltron Research'),
(1071, 'https://ror.org/03wckff62', 'no_lang_code', 1, 'https://ror.org/03wckff62 Southwest Sciences (United States)'),
(1072, 'https://ror.org/01qv3p587', 'no_lang_code', 1, 'https://ror.org/01qv3p587 Universal Stabilization Technologies'),
(1073, 'https://ror.org/02fwb6r86', 'no_lang_code', 1, 'https://ror.org/02fwb6r86 Intelligent Automation (United States)'),
(1074, 'https://ror.org/02wk1td69', 'pt', 1, 'https://ror.org/02wk1td69 Fundacao Universitaria Jose Bonifacio'),
(1075, 'https://ror.org/00756eb27', 'no_lang_code', 1, 'https://ror.org/00756eb27 Barlow Scientific'),
(1076, 'https://ror.org/00vznbp60', 'no_lang_code', 1, 'https://ror.org/00vznbp60 Alpha Universe'),
(1077, 'https://ror.org/05v7axt97', 'no_lang_code', 1, 'https://ror.org/05v7axt97 Resodyn Corporation (United States)'),
(1078, 'https://ror.org/00qzd4032', 'no_lang_code', 1, 'https://ror.org/00qzd4032 Quality Biological'),
(1079, 'https://ror.org/045r8zm03', 'en', 1, 'https://ror.org/045r8zm03 American Sociological Association'),
(1080, 'https://ror.org/02fzxed89', 'en', 1, 'https://ror.org/02fzxed89 American Statistical Association'),
(1081, 'https://ror.org/05x3tad86', 'no_lang_code', 1, 'https://ror.org/05x3tad86 Inotek Pharmaceuticals (United States)'),
(1082, 'https://ror.org/05y8s3144', 'no_lang_code', 1, 'https://ror.org/05y8s3144 TPL (United States)'),
(1083, 'https://ror.org/01bthtp68', 'no_lang_code', 1, 'https://ror.org/01bthtp68 Corixa Corporation'),
(1084, 'https://ror.org/038rhxb62', 'no_lang_code', 1, 'https://ror.org/038rhxb62 IM Systems (United States)'),
(1085, 'https://ror.org/05qx0rg92', 'no_lang_code', 1, 'https://ror.org/05qx0rg92 HealthMark Multimedia'),
(1086, 'https://ror.org/058c4h389', 'no_lang_code', 1, 'https://ror.org/058c4h389 Atom Sciences'),
(1087, 'https://ror.org/05ns8wm63', 'no_lang_code', 1, 'https://ror.org/05ns8wm63 Abratech Corporation'),
(1088, 'https://ror.org/04m2hyg08', 'en', 1, 'https://ror.org/04m2hyg08 Maryland Science Center'),
(1089, 'https://ror.org/047qrb368', 'en', 1, 'https://ror.org/047qrb368 South Carolina State Governor''s Office'),
(1090, 'https://ror.org/00prpaj09', 'no_lang_code', 1, 'https://ror.org/00prpaj09 Alion Science and Technology (United States)'),
(1091, 'https://ror.org/01a423692', 'no_lang_code', 1, 'https://ror.org/01a423692 Aastrom Biosciences (United States)'),
(1092, 'https://ror.org/00spnmn10', 'no_lang_code', 1, 'https://ror.org/00spnmn10 Whalen Biomedical'),
(1093, 'https://ror.org/00nmnnk78', 'en', 1, 'https://ror.org/00nmnnk78 University Medical Center of El Paso'),
(1094, 'https://ror.org/03qz9vy49', 'no_lang_code', 1, 'https://ror.org/03qz9vy49 Photon Imaging (United States)'),
(1095, 'https://ror.org/03d1v2g75', 'no_lang_code', 1, 'https://ror.org/03d1v2g75 Epoch Biosciences (United States)'),
(1096, 'https://ror.org/02ra1fm11', 'no_lang_code', 1, 'https://ror.org/02ra1fm11 Thermal Technologies (United States)'),
(1097, 'https://ror.org/00k27zs44', 'no_lang_code', 1, 'https://ror.org/00k27zs44 Oxford Biomedical Research'),
(1098, 'https://ror.org/03b5q4637', 'en', 1, 'https://ror.org/03b5q4637 Educational Testing Service'),
(1099, 'https://ror.org/026p6d134', 'en', 1, 'https://ror.org/026p6d134 Memorial Health University Medical Center'),
(1100, 'https://ror.org/059dqb057', 'en', 1, 'https://ror.org/059dqb057 American Chemical Society'),
(1101, 'https://ror.org/019br0e98', 'no_lang_code', 1, 'https://ror.org/019br0e98 Metabolic Solutions'),
(1102, 'https://ror.org/02d3bpj67', 'no_lang_code', 1, 'https://ror.org/02d3bpj67 Medical Physics Consultants'),
(1103, 'https://ror.org/02sn5gb64', 'en', 1, 'https://ror.org/02sn5gb64 Toyota Technological Institute at Chicago'),
(1104, 'https://ror.org/01mfrg562', 'en', 1, 'https://ror.org/01mfrg562 Dauphin Island Sea Lab'),
(1105, 'https://ror.org/01zr6qe45', 'en', 1, 'https://ror.org/01zr6qe45 Colorado Center For Hospice and Palliative Care'),
(1106, 'https://ror.org/00whfdj78', 'no_lang_code', 1, 'https://ror.org/00whfdj78 BioTek (United States)'),
(1107, 'https://ror.org/044pc0j16', 'no_lang_code', 1, 'https://ror.org/044pc0j16 Mycologics'),
(1108, 'https://ror.org/05qkm6m65', 'no_lang_code', 1, 'https://ror.org/05qkm6m65 Engi-Mat (United States)'),
(1109, 'https://ror.org/0422q5a32', 'en', 1, 'https://ror.org/0422q5a32 Scripps Whittier Diabetes Institute'),
(1110, 'https://ror.org/0219m2k96', 'en', 1, 'https://ror.org/0219m2k96 Decision Research'),
(1111, 'https://ror.org/01t817z14', 'en', 1, 'https://ror.org/01t817z14 University of Houston - Clear Lake'),
(1112, 'https://ror.org/02sc91t34', 'en', 1, 'https://ror.org/02sc91t34 American Association of Geographers'),
(1113, 'https://ror.org/04s5n7912', 'en', 1, 'https://ror.org/04s5n7912 Science Research Laboratory'),
(1114, 'https://ror.org/027970q43', 'no_lang_code', 1, 'https://ror.org/027970q43 Emergent BioSolutions (United States)'),
(1115, 'https://ror.org/05t7jxa31', 'en', 1, 'https://ror.org/05t7jxa31 Institute for Cancer Prevention'),
(1116, 'https://ror.org/02nr3fr97', 'en', 1, 'https://ror.org/02nr3fr97 Center for Biologics Evaluation and Research'),
(1117, 'https://ror.org/034f0sr31', 'no_lang_code', 1, 'https://ror.org/034f0sr31 NuvOx Pharma (United States)'),
(1118, 'https://ror.org/0260bkf37', 'no_lang_code', 1, 'https://ror.org/0260bkf37 NuroRestore (United States)'),
(1119, 'https://ror.org/01a0h9c53', 'no_lang_code', 1, 'https://ror.org/01a0h9c53 Kingston Process Metallurgy (Canada)'),
(1120, 'https://ror.org/0354m4207', 'no_lang_code', 1, 'https://ror.org/0354m4207 Kinexus Bioinformatics Corporation (Canada)'),
(1121, 'https://ror.org/0171atz91', 'no_lang_code', 1, 'https://ror.org/0171atz91 Iogen Corporation'),
(1122, 'https://ror.org/00cgjx575', 'en', 1, 'https://ror.org/00cgjx575 TRTech'),
(1123, 'https://ror.org/04hjf5k52', 'no_lang_code', 1, 'https://ror.org/04hjf5k52 Pivotal Labs'),
(1124, 'https://ror.org/02jj9nh46', 'no_lang_code', 1, 'https://ror.org/02jj9nh46 Artron Bioresearch (Canada)'),
(1125, 'https://ror.org/056d7mp27', 'no_lang_code', 1, 'https://ror.org/056d7mp27 Applied Biological Materials (Canada)'),
(1126, 'https://ror.org/01h29af62', 'no_lang_code', 1, 'https://ror.org/01h29af62 Spartan Bioscience (Canada)'),
(1127, 'https://ror.org/031sxg258', 'no_lang_code', 1, 'https://ror.org/031sxg258 Boehringer Ingelheim (Canada)'),
(1128, 'https://ror.org/03fbkqs26', 'no_lang_code', 1, 'https://ror.org/03fbkqs26 Bombardier (Canada)'),
(1129, 'https://ror.org/008jvv944', 'fr', 1, 'https://ror.org/008jvv944 Héma-Québec'),
(1130, 'https://ror.org/04df9p911', 'no_lang_code', 1, 'https://ror.org/04df9p911 Biorem Technologies (Canada)'),
(1131, 'https://ror.org/03wn09h25', 'no_lang_code', 1, 'https://ror.org/03wn09h25 Novelis (Canada)'),
(1132, 'https://ror.org/00qfq7b40', 'no_lang_code', 1, 'https://ror.org/00qfq7b40 PerkinElmer Biosignal'),
(1133, 'https://ror.org/01d2sy711', 'no_lang_code', 1, 'https://ror.org/01d2sy711 E-One Moli Energy (Canada)'),
(1134, 'https://ror.org/0306r8m89', 'no_lang_code', 1, 'https://ror.org/0306r8m89 Enerkem (Canada)'),
(1135, 'https://ror.org/05jbvqr49', 'no_lang_code', 1, 'https://ror.org/05jbvqr49 Gastops (Canada)'),
(1136, 'https://ror.org/01k1ea759', 'no_lang_code', 1, 'https://ror.org/01k1ea759 AUG Signals (Canada)'),
(1137, 'https://ror.org/04jx7r642', 'no_lang_code', 1, 'https://ror.org/04jx7r642 Process Research Ortech (Canada)'),
(1138, 'https://ror.org/01hyxtd05', 'no_lang_code', 1, 'https://ror.org/01hyxtd05 Neova Technologies Inc.'),
(1139, 'https://ror.org/05xeczx11', 'no_lang_code', 1, 'https://ror.org/05xeczx11 Curtiss-Wright (Canada)'),
(1140, 'https://ror.org/0103a0295', 'no_lang_code', 1, 'https://ror.org/0103a0295 Teleflex (Canada)'),
(1141, 'https://ror.org/01bywqg69', 'no_lang_code', 1, 'https://ror.org/01bywqg69 Automotive Fuel Cell Cooperation (Canada)'),
(1142, 'https://ror.org/04zyews33', 'no_lang_code', 1, 'https://ror.org/04zyews33 Baylis Medical (Canada)'),
(1143, 'https://ror.org/01eeehv22', 'no_lang_code', 1, 'https://ror.org/01eeehv22 Bell Helicopter Textron (Canada)'),
(1144, 'https://ror.org/0493caa98', 'no_lang_code', 1, 'https://ror.org/0493caa98 Lallemand (Canada)'),
(1145, 'https://ror.org/03d7m4a98', 'no_lang_code', 1, 'https://ror.org/03d7m4a98 Ross Video (Canada)'),
(1146, 'https://ror.org/00rey4c89', 'no_lang_code', 1, 'https://ror.org/00rey4c89 General Electric (Canada)'),
(1147, 'https://ror.org/05dd3wr66', 'en', 1, 'https://ror.org/05dd3wr66 Huntsman Marine Science Centre'),
(1148, 'https://ror.org/04kzbp858', 'no_lang_code', 1, 'https://ror.org/04kzbp858 Agropur cooperative'),
(1149, 'https://ror.org/03ddsp339', 'no_lang_code', 1, 'https://ror.org/03ddsp339 Pyrogenesis (Canada)'),
(1150, 'https://ror.org/00kym4953', 'no_lang_code', 1, 'https://ror.org/00kym4953 Gemite Group'),
(1151, 'https://ror.org/03q1gvb68', 'no_lang_code', 1, 'https://ror.org/03q1gvb68 Neoleukin Therapeutics (Canada)'),
(1152, 'https://ror.org/04jwmdy30', 'no_lang_code', 1, 'https://ror.org/04jwmdy30 XMG Studio (Canada)'),
(1153, 'https://ror.org/05ct3pv92', 'no_lang_code', 1, 'https://ror.org/05ct3pv92 Lanxess (Canada)'),
(1154, 'https://ror.org/04j7rhg40', 'no_lang_code', 1, 'https://ror.org/04j7rhg40 Prime Focus World'),
(1155, 'https://ror.org/04mc30s43', 'no_lang_code', 1, 'https://ror.org/04mc30s43 Olivieri Foods'),
(1156, 'https://ror.org/020qgp237', 'no_lang_code', 1, 'https://ror.org/020qgp237 DuPont (Canada)'),
(1157, 'https://ror.org/00meyvj69', 'en', 1, 'https://ror.org/00meyvj69 St. Lawrence River Institute of Environmental Sciences'),
(1158, 'https://ror.org/02nbyhf94', 'no_lang_code', 1, 'https://ror.org/02nbyhf94 Coanda Research and Development Corporation (Canada)'),
(1159, 'https://ror.org/04xvkcm66', 'no_lang_code', 1, 'https://ror.org/04xvkcm66 Apption'),
(1160, 'https://ror.org/01h0x7c18', 'en', 1, 'https://ror.org/01h0x7c18 PBR Laboratories'),
(1161, 'https://ror.org/020b6jb08', 'en', 1, 'https://ror.org/020b6jb08 Canadian Mathematical Society'),
(1162, 'https://ror.org/04z18y971', 'no_lang_code', 1, 'https://ror.org/04z18y971 Jennerex Biotherapeutics (Canada)'),
(1163, 'https://ror.org/02q2rtn50', 'no_lang_code', 1, 'https://ror.org/02q2rtn50 Tangam Gaming Inc'),
(1164, 'https://ror.org/05qmezx22', 'no_lang_code', 1, 'https://ror.org/05qmezx22 Guelph Chemical Labs'),
(1165, 'https://ror.org/030b05n70', 'no_lang_code', 1, 'https://ror.org/030b05n70 123 Certification (Canada)'),
(1166, 'https://ror.org/00adjy062', 'no_lang_code', 1, 'https://ror.org/00adjy062 Performance Plants (Canada)'),
(1167, 'https://ror.org/0336f9q30', 'no_lang_code', 1, 'https://ror.org/0336f9q30 Suez (Canada)'),
(1168, 'https://ror.org/04qwmjc96', 'no_lang_code', 1, 'https://ror.org/04qwmjc96 BASF (Canada)'),
(1169, 'https://ror.org/01wpkc438', 'en', 1, 'https://ror.org/01wpkc438 Canadian Foundation For The International Space University'),
(1170, 'https://ror.org/012yc3523', 'no_lang_code', 1, 'https://ror.org/012yc3523 COM DEV International'),
(1171, 'https://ror.org/03g1nep17', 'no_lang_code', 1, 'https://ror.org/03g1nep17 3M (Canada)'),
(1172, 'https://ror.org/05wtx0016', 'no_lang_code', 1, 'https://ror.org/05wtx0016 Canon (Canada)'),
(1173, 'https://ror.org/00h85x510', 'no_lang_code', 1, 'https://ror.org/00h85x510 Tembec'),
(1174, 'https://ror.org/02wg4pk78', 'no_lang_code', 1, 'https://ror.org/02wg4pk78 Produits forestiers Résolu Resolute Forest Products (Canada)'),
(1175, 'https://ror.org/02xpn4676', 'no_lang_code', 1, 'https://ror.org/02xpn4676 Micronet (United States)'),
(1176, 'https://ror.org/00m1n2078', 'no_lang_code', 1, 'https://ror.org/00m1n2078 CAE (Canada)'),
(1177, 'https://ror.org/051sezk39', 'no_lang_code', 1, 'https://ror.org/051sezk39 Micralyne'),
(1178, 'https://ror.org/03bq2c460', 'no_lang_code', 1, 'https://ror.org/03bq2c460 Barrick Gold (Canada)'),
(1179, 'https://ror.org/031z68d90', 'fr', 1, 'https://ror.org/031z68d90 Institut Universitaire de Gériatrie de Montréal'),
(1180, 'https://ror.org/030tcms06', 'en', 1, 'https://ror.org/030tcms06 Rocky Mountain Biological Laboratory'),
(1181, 'https://ror.org/03kcsjh25', 'en', 1, 'https://ror.org/03kcsjh25 National Institute of Statistical Sciences'),
(1182, 'https://ror.org/047z4n946', 'en', 1, 'https://ror.org/047z4n946 Semiconductor Research Corporation'),
(1183, 'https://ror.org/01agth861', 'en', 1, 'https://ror.org/01agth861 American Association of Physics Teachers'),
(1184, 'https://ror.org/05j8hg602', 'en', 1, 'https://ror.org/05j8hg602 American Physical Society Société américaine de physique'),
(1185, 'https://ror.org/02kk9ec90', 'en', 1, 'https://ror.org/02kk9ec90 Organization For Tropical Studies'),
(1186, 'https://ror.org/01h6pd645', 'no_lang_code', 1, 'https://ror.org/01h6pd645 SurModics (United States)'),
(1187, 'https://ror.org/04m8bh175', 'no_lang_code', 1, 'https://ror.org/04m8bh175 Advanced Fuel Research (United States)'),
(1188, 'https://ror.org/0296jvb66', 'no_lang_code', 1, 'https://ror.org/0296jvb66 WNET (United States)'),
(1189, 'https://ror.org/04kte4472', 'no_lang_code', 1, 'https://ror.org/04kte4472 Materials and Electrochemical Research (United States)'),
(1190, 'https://ror.org/03db3by08', 'en', 1, 'https://ror.org/03db3by08 Northeast Radio Observatory Corporation'),
(1191, 'https://ror.org/02kjq0603', 'en', 1, 'https://ror.org/02kjq0603 American Bar Foundation'),
(1192, 'https://ror.org/015178j52', 'en', 1, 'https://ror.org/015178j52 Wested'),
(1193, 'https://ror.org/03d0z1f54', 'no_lang_code', 1, 'https://ror.org/03d0z1f54 Electrosynthesis Company (United States)'),
(1194, 'https://ror.org/04c0sqe08', 'en', 1, 'https://ror.org/04c0sqe08 Truckee Meadows Community College'),
(1195, 'https://ror.org/05gqcbq50', 'en', 1, 'https://ror.org/05gqcbq50 Aspen Center For Physics Centre pour la physique d''aspen'),
(1196, 'https://ror.org/00f2ymb10', 'en', 1, 'https://ror.org/00f2ymb10 Chesapeake Research Consortium'),
(1197, 'https://ror.org/04133ks15', 'en', 1, 'https://ror.org/04133ks15 Ecpi University'),
(1198, 'https://ror.org/01c804c94', 'no_lang_code', 1, 'https://ror.org/01c804c94 First Point Scientific'),
(1199, 'https://ror.org/03kv7mk61', 'no_lang_code', 1, 'https://ror.org/03kv7mk61 MPC Computers (United States)'),
(1200, 'https://ror.org/00rh8m666', 'en', 1, 'https://ror.org/00rh8m666 Institute For Defense Analyses Instituto de Análisis de la Defensa'),
(1201, 'https://ror.org/046a9q865', 'en', 1, 'https://ror.org/046a9q865 Space Science Institute'),
(1202, 'https://ror.org/033212v26', 'no_lang_code', 1, 'https://ror.org/033212v26 McPhee Research (United States)'),
(1203, 'https://ror.org/00dpx3e98', 'en', 1, 'https://ror.org/00dpx3e98 American Meteorological Society'),
(1204, 'https://ror.org/05p89st11', 'en', 1, 'https://ror.org/05p89st11 American Geosciences Institute'),
(1205, 'https://ror.org/0029f7m05', 'en', 1, 'https://ror.org/0029f7m05 Geological Society of America'),
(1206, 'https://ror.org/01cmpkr67', 'no_lang_code', 1, 'https://ror.org/01cmpkr67 Materials Modification (United States)'),
(1207, 'https://ror.org/05wd11c32', 'en', 1, 'https://ror.org/05wd11c32 Research Corporation of The University of Hawaii'),
(1208, 'https://ror.org/017wcm924', 'en', 1, 'https://ror.org/017wcm924 University System of Georgia'),
(1209, 'https://ror.org/004kyan19', 'en', 1, 'https://ror.org/004kyan19 Maricopa County Community College District'),
(1210, 'https://ror.org/018s6xs98', 'en', 1, 'https://ror.org/018s6xs98 International Cooperative Administrative Support Services'),
(1211, 'https://ror.org/02eb0rk31', 'en', 1, 'https://ror.org/02eb0rk31 Association for the Advancement of Artificial Intelligence'),
(1212, 'https://ror.org/02b8m7s43', 'en', 1, 'https://ror.org/02b8m7s43 American Anthropological Association'),
(1213, 'https://ror.org/00k8kp236', 'en', 1, 'https://ror.org/00k8kp236 Applied Technology Council'),
(1214, 'https://ror.org/05vy1kj95', 'en', 1, 'https://ror.org/05vy1kj95 American Mathematical Society Sociedad Estadounidense de Matemática'),
(1215, 'https://ror.org/00var5q80', 'en', 1, 'https://ror.org/00var5q80 American Geophysical Union'),
(1216, 'https://ror.org/00byr8j11', 'en', 1, 'https://ror.org/00byr8j11 National Science Teachers Association'),
(1217, 'https://ror.org/01ctb0h41', 'en', 1, 'https://ror.org/01ctb0h41 Triangle Coalition For Science and Technology Education'),
(1218, 'https://ror.org/01e5t7e46', 'no_lang_code', 1, 'https://ror.org/01e5t7e46 Nanomaterials Research (United States)'),
(1219, 'https://ror.org/00agrkd75', 'en', 1, 'https://ror.org/00agrkd75 Computing Research Association'),
(1220, 'https://ror.org/03ac64295', 'en', 1, 'https://ror.org/03ac64295 American Society For Engineering Education'),
(1221, 'https://ror.org/02h63je06', 'en', 1, 'https://ror.org/02h63je06 Quality Education for Minorities Network'),
(1222, 'https://ror.org/035y9xj66', 'en', 1, 'https://ror.org/035y9xj66 Consortium For Mathematics & Its Applications'),
(1223, 'https://ror.org/05a064c11', 'no_lang_code', 1, 'https://ror.org/05a064c11 Caisson Laboratories (United States)'),
(1224, 'https://ror.org/013habd96', 'en', 1, 'https://ror.org/013habd96 Twin Cities Public Television'),
(1225, 'https://ror.org/03gke3141', 'en', 1, 'https://ror.org/03gke3141 World Technology Evaluation Center'),
(1226, 'https://ror.org/01yav5t22', 'en', 1, 'https://ror.org/01yav5t22 Conference Board Math Sciences'),
(1227, 'https://ror.org/01n260e81', 'en', 1, 'https://ror.org/01n260e81 Rancho Santa Ana Botanic Garden'),
(1228, 'https://ror.org/018224621', 'en', 1, 'https://ror.org/018224621 American Academy of Arts and Sciences'),
(1229, 'https://ror.org/010h7bv12', 'no_lang_code', 1, 'https://ror.org/010h7bv12 Integrated Plant Genetics (United States)'),
(1230, 'https://ror.org/00jv89z46', 'en', 1, 'https://ror.org/00jv89z46 Louisiana Board of Regents'),
(1231, 'https://ror.org/01nf63x62', 'en', 1, 'https://ror.org/01nf63x62 Institute of Global Environment and Society'),
(1232, 'https://ror.org/05hrczs03', 'en', 1, 'https://ror.org/05hrczs03 American Association of University Women'),
(1233, 'https://ror.org/027nk1z82', 'no_lang_code', 1, 'https://ror.org/027nk1z82 INRAD (United States)'),
(1234, 'https://ror.org/057e34m22', 'en', 1, 'https://ror.org/057e34m22 University of Massachusetts Donahue Institute'),
(1235, 'https://ror.org/02q8vys74', 'en', 1, 'https://ror.org/02q8vys74 American Institute of Physics'),
(1236, 'https://ror.org/056sm7z81', 'en', 1, 'https://ror.org/056sm7z81 Council of Chief State School Officers'),
(1237, 'https://ror.org/007n03h88', 'en', 1, 'https://ror.org/007n03h88 Purdue Research Foundation'),
(1238, 'https://ror.org/03vaer060', 'en', 1, 'https://ror.org/03vaer060 MRC University of Glasgow Centre for Virus Research'),
(1239, 'https://ror.org/02j8pe645', 'en', 1, 'https://ror.org/02j8pe645 National Academy of Sciences of Belarus Национальная академия наук Беларуси Нацыянальная акадэмія навук Беларусі'),
(1240, 'https://ror.org/04vfsmv21', 'en', 1, 'https://ror.org/04vfsmv21 National Institutes of Health Clinical Center'),
(1241, 'https://ror.org/04a3akw68', 'no_lang_code', 1, 'https://ror.org/04a3akw68 Airbus (Germany)'),
(1242, 'https://ror.org/05cz6df97', 'en', 1, 'https://ror.org/05cz6df97 Alabama Department of Mental Health'),
(1243, 'https://ror.org/01kxqsy59', 'no_lang_code', 1, 'https://ror.org/01kxqsy59 Atos (Spain)'),
(1244, 'https://ror.org/01djnr762', 'no_lang_code', 1, 'https://ror.org/01djnr762 Dalsa Corporation'),
(1245, 'https://ror.org/01ja5zt45', 'en', 1, 'https://ror.org/01ja5zt45 District of Columbia Department of Health'),
(1246, 'https://ror.org/01rahby95', 'en', 1, 'https://ror.org/01rahby95 Department of Human Services'),
(1247, 'https://ror.org/034adnw64', 'en', 1, 'https://ror.org/034adnw64 Durham VA Medical Center'),
(1248, 'https://ror.org/01kgs1r94', 'no_lang_code', 1, 'https://ror.org/01kgs1r94 Electrical Geodesics (United States)'),
(1249, 'https://ror.org/04cjgh922', 'no_lang_code', 1, 'https://ror.org/04cjgh922 Honeywell (Canada)'),
(1250, 'https://ror.org/0025e3007', 'no_lang_code', 1, 'https://ror.org/0025e3007 TIBCO Software (United States)'),
(1251, 'https://ror.org/03r6k1a05', 'en', 1, 'https://ror.org/03r6k1a05 Institute of Occupational Medicine'),
(1252, 'https://ror.org/04hgm3062', 'en', 1, 'https://ror.org/04hgm3062 Iowa City VA Health Care System'),
(1253, 'https://ror.org/025xmgt30', 'en', 1, 'https://ror.org/025xmgt30 Oregon Social Learning Center'),
(1254, 'https://ror.org/03j05zz84', 'en', 1, 'https://ror.org/03j05zz84 Philadelphia VA Medical Center'),
(1255, 'https://ror.org/017ztfb41', 'en', 1, 'https://ror.org/017ztfb41 San Francisco Department of Public Health'),
(1256, 'https://ror.org/023cbtv31', 'en', 1, 'https://ror.org/023cbtv31 Madrid Health Service Servicio Madrileño de Salud'),
(1257, 'https://ror.org/01gd3da15', 'no_lang_code', 1, 'https://ror.org/01gd3da15 Stantec (Canada)'),
(1258, 'https://ror.org/04v00sg98', 'en', 1, 'https://ror.org/04v00sg98 VA Boston Healthcare System'),
(1259, 'https://ror.org/049peqw80', 'en', 1, 'https://ror.org/049peqw80 San Francisco VA Medical Center'),
(1260, 'https://ror.org/02sp1z620', 'en', 1, 'https://ror.org/02sp1z620 Burke Medical Research Institute'),
(1261, 'https://ror.org/045v7ay82', 'en', 1, 'https://ror.org/045v7ay82 Chicago Department of Public Health'),
(1262, 'https://ror.org/019rjbt98', 'en', 1, 'https://ror.org/019rjbt98 Colorado Department of Public Health and Environment'),
(1263, 'https://ror.org/0408cp281', 'en', 1, 'https://ror.org/0408cp281 Delaware Department of Health and Social Services'),
(1264, 'https://ror.org/04jer6b34', 'en', 1, 'https://ror.org/04jer6b34 Washington State Board of Education'),
(1265, 'https://ror.org/03e1xkn26', 'en', 1, 'https://ror.org/03e1xkn26 Florida Department of Health'),
(1266, 'https://ror.org/01381hr71', 'no_lang_code', 1, 'https://ror.org/01381hr71 Golder Associates (Canada)'),
(1267, 'https://ror.org/02js37d36', 'en', 1, 'https://ror.org/02js37d36 IBM Research - Zurich'),
(1268, 'https://ror.org/01g3pwn65', 'en', 1, 'https://ror.org/01g3pwn65 Mississippi Department of Mental Health');
INSERT INTO `rors` VALUES
(1269, 'https://ror.org/0293qmt12', 'en', 1, 'https://ror.org/0293qmt12 NC Department of Health and Human Services'),
(1270, 'https://ror.org/00mwdv335', 'en', 1, 'https://ror.org/00mwdv335 Académie new-yorkaise de médecine New York Academy of Medicine'),
(1271, 'https://ror.org/02v3txv81', 'en', 1, 'https://ror.org/02v3txv81 Portland VA Medical Center'),
(1272, 'https://ror.org/05831wz16', 'en', 1, 'https://ror.org/05831wz16 Republic of Palau Ministry of Health'),
(1273, 'https://ror.org/05eqt7s39', 'en', 1, 'https://ror.org/05eqt7s39 Athens Information Technology'),
(1274, 'https://ror.org/01b5d7p48', 'no_lang_code', 1, 'https://ror.org/01b5d7p48 Schlumberger (France)'),
(1275, 'https://ror.org/03jh5a977', 'en', 1, 'https://ror.org/03jh5a977 Center for Information Technology'),
(1276, 'https://ror.org/028f19s63', 'en', 1, 'https://ror.org/028f19s63 Dairy Farmers Of Canada'),
(1277, 'https://ror.org/022gnbj15', 'en', 1, 'https://ror.org/022gnbj15 Louisiana State University System'),
(1278, 'https://ror.org/044f69t13', 'en', 1, 'https://ror.org/044f69t13 Ministry of Natural Resources and Wildlife Ministère de l''Énergie et des Ressources naturelles'),
(1279, 'https://ror.org/05ehe6278', 'no_lang_code', 1, 'https://ror.org/05ehe6278 Cameco (Canada)'),
(1280, 'https://ror.org/01h9xtf29', 'no_lang_code', 1, 'https://ror.org/01h9xtf29 Friday Systems (United States)'),
(1281, 'https://ror.org/056phcb82', 'en', 1, 'https://ror.org/056phcb82 The Keystone Center'),
(1282, 'https://ror.org/05fcfqq67', 'en', 1, 'https://ror.org/05fcfqq67 Oregon National Primate Research Center'),
(1283, 'https://ror.org/00tt53p64', 'en', 1, 'https://ror.org/00tt53p64 SRC'),
(1284, 'https://ror.org/00vpw9h05', 'en', 1, 'https://ror.org/00vpw9h05 Honolulu Community College'),
(1285, 'https://ror.org/05mj6fy81', 'en', 1, 'https://ror.org/05mj6fy81 Universidad de Houston-Downtown University of Houston - Downtown'),
(1286, 'https://ror.org/05qapqt30', 'en', 1, 'https://ror.org/05qapqt30 Montana Department of Public Health and Human Services'),
(1287, 'https://ror.org/031g2ej16', 'no_lang_code', 1, 'https://ror.org/031g2ej16 Dow Chemical (Canada)'),
(1288, 'https://ror.org/02c97ng92', 'no_lang_code', 1, 'https://ror.org/02c97ng92 ArcelorMittal (Canada)'),
(1289, 'https://ror.org/05586rd65', 'nl', 1, 'https://ror.org/05586rd65 Kiwa'),
(1290, 'https://ror.org/004q6ee74', 'no_lang_code', 1, 'https://ror.org/004q6ee74 Technical Research Associates (United States)'),
(1291, 'https://ror.org/02zn9x324', 'no_lang_code', 1, 'https://ror.org/02zn9x324 INTRASOFT International (Luxembourg)'),
(1292, 'https://ror.org/021wvan87', 'no_lang_code', 1, 'https://ror.org/021wvan87 Qi2'),
(1293, 'https://ror.org/03k1gyh28', 'no_lang_code', 1, 'https://ror.org/03k1gyh28 SNC-Lavalin (Canada)'),
(1294, 'https://ror.org/01q4pk532', 'no_lang_code', 1, 'https://ror.org/01q4pk532 Hydro One (Canada)'),
(1295, 'https://ror.org/003sqpd76', 'en', 1, 'https://ror.org/003sqpd76 Agruicultural Research Institute'),
(1296, 'https://ror.org/025nszc09', 'no_lang_code', 1, 'https://ror.org/025nszc09 Canadian Natural Resources'),
(1297, 'https://ror.org/05sgcwh30', 'fr', 1, 'https://ror.org/05sgcwh30 Ministère des Transports'),
(1298, 'https://ror.org/02nh10f55', 'en', 1, 'https://ror.org/02nh10f55 Evanston Hospital'),
(1299, 'https://ror.org/04zy7mm10', 'en', 1, 'https://ror.org/04zy7mm10 Canadian Dairy Network'),
(1300, 'https://ror.org/0360cq027', 'en', 1, 'https://ror.org/0360cq027 LDS Hospital'),
(1301, 'https://ror.org/03bzbh797', 'en', 1, 'https://ror.org/03bzbh797 UPMC Montefiore'),
(1302, 'https://ror.org/01c5j0443', 'fr', 1, 'https://ror.org/01c5j0443 Institut d''Économie Rurale'),
(1303, 'https://ror.org/04z1c5686', 'no_lang_code', 1, 'https://ror.org/04z1c5686 Encana (Canada)'),
(1304, 'https://ror.org/039ajs610', 'no_lang_code', 1, 'https://ror.org/039ajs610 Weyerhauser (Canada)'),
(1305, 'https://ror.org/04xze1462', 'no_lang_code', 1, 'https://ror.org/04xze1462 Nokia (Belgium)'),
(1306, 'https://ror.org/05hh8d621', 'no_lang_code', 1, 'https://ror.org/05hh8d621 IBM (United States)'),
(1307, 'https://ror.org/02jbvhm37', 'en', 1, 'https://ror.org/02jbvhm37 Southeastern Universities Research Association'),
(1308, 'https://ror.org/04jfnqt61', 'no_lang_code', 1, 'https://ror.org/04jfnqt61 Western Forest Products'),
(1309, 'https://ror.org/05hbrxp80', 'en', 1, 'https://ror.org/05hbrxp80 Agricultural Research Organization מנהל המחקר החקלאי - מרכז וולקני'),
(1310, 'https://ror.org/055fgjp51', 'no_lang_code', 1, 'https://ror.org/055fgjp51 Nimbus Landscape Materials (United States)'),
(1311, 'https://ror.org/03mv07c21', 'no_lang_code', 1, 'https://ror.org/03mv07c21 Arthur D. Little (Czechia)'),
(1312, 'https://ror.org/04e5j7m81', 'en', 1, 'https://ror.org/04e5j7m81 American Society of Mechanical Engineers'),
(1313, 'https://ror.org/03ag5ed62', 'no_lang_code', 1, 'https://ror.org/03ag5ed62 Allied Technology (United States)'),
(1314, 'https://ror.org/03h2c3g63', 'no_lang_code', 1, 'https://ror.org/03h2c3g63 Matériaux Blanchet'),
(1315, 'https://ror.org/00bmzhb16', 'en', 1, 'https://ror.org/00bmzhb16 Gembloux Agro-Bio Tech'),
(1316, 'https://ror.org/028sv9734', 'no_lang_code', 1, 'https://ror.org/028sv9734 PotashCorp (Canada)'),
(1317, 'https://ror.org/04pf12f40', 'en', 1, 'https://ror.org/04pf12f40 Louisiana State University at Eunice Université d''État de louisiane à eunice'),
(1318, 'https://ror.org/02df8t483', 'no_lang_code', 1, 'https://ror.org/02df8t483 Bridgepoint (United Kingdom)'),
(1319, 'https://ror.org/01t6tyq74', 'en', 1, 'https://ror.org/01t6tyq74 Consortium of Universities for Research in Earthquake Engineering'),
(1320, 'https://ror.org/03yjkej49', 'en', 1, 'https://ror.org/03yjkej49 Center for Interuniversity Research and Analysis on Organizations'),
(1321, 'https://ror.org/00z0drp11', 'no_lang_code', 1, 'https://ror.org/00z0drp11 Agnico Eagle (Canada)'),
(1322, 'https://ror.org/04ymee833', 'en', 1, 'https://ror.org/04ymee833 Central Institute for the Deaf'),
(1323, 'https://ror.org/01qd3xc93', 'en', 1, 'https://ror.org/01qd3xc93 Fondazione Mario Negri Sud Mario Negri Sud Foundation'),
(1324, 'https://ror.org/012r5qt14', 'en', 1, 'https://ror.org/012r5qt14 Manitoba Pork Council'),
(1325, 'https://ror.org/00wzt9y79', 'en', 1, 'https://ror.org/00wzt9y79 Ohio Cancer Research Associates'),
(1326, 'https://ror.org/00tapj019', 'en', 1, 'https://ror.org/00tapj019 Asociación de Universidades Americanas Association des universités américaines Association of American Universities'),
(1327, 'https://ror.org/02ap76n24', 'en', 1, 'https://ror.org/02ap76n24 Egyptian Universities Network شبكة الجامعات المصرية'),
(1328, 'https://ror.org/05rejmm18', 'no_lang_code', 1, 'https://ror.org/05rejmm18 DELL (United States)'),
(1329, 'https://ror.org/03jhnpw59', 'en', 1, 'https://ror.org/03jhnpw59 Museum Of Northern Arizona'),
(1330, 'https://ror.org/05hmwx760', 'en', 1, 'https://ror.org/05hmwx760 Poultry Industry Council'),
(1331, 'https://ror.org/01w1pbe36', 'en', 1, 'https://ror.org/01w1pbe36 University of Maryland Global Campus'),
(1332, 'https://ror.org/00y6akb91', 'no_lang_code', 1, 'https://ror.org/00y6akb91 Revolution Analytics (United States)'),
(1333, 'https://ror.org/01v6gr187', 'no_lang_code', 1, 'https://ror.org/01v6gr187 Semex'),
(1334, 'https://ror.org/03h2bh287', 'en', 1, 'https://ror.org/03h2bh287 Oxford University Hospitals NHS Trust'),
(1335, 'https://ror.org/01f97j659', 'en', 1, 'https://ror.org/01f97j659 Anyang Academy of Agricultural Sciences 安阳市农业科学院'),
(1336, 'https://ror.org/00n5htd36', 'en', 1, 'https://ror.org/00n5htd36 Westmar University'),
(1337, 'https://ror.org/00xmkp704', 'en', 1, 'https://ror.org/00xmkp704 Ghent University Hospital Universitair Ziekenhuis Gent'),
(1338, 'https://ror.org/04nrjxa63', 'en', 1, 'https://ror.org/04nrjxa63 Shanghai Agrobiological Gene Center 上海市农业生物基因中心'),
(1339, 'https://ror.org/033tc5r37', 'en', 1, 'https://ror.org/033tc5r37 Institute of Dermatology & Venereology of the Yunnan Province'),
(1340, 'https://ror.org/038cpkc46', 'en', 1, 'https://ror.org/038cpkc46 Northrop University'),
(1341, 'https://ror.org/027mjht27', 'de', 1, 'https://ror.org/027mjht27 Institut Universitaire Kurt Bösch'),
(1342, 'https://ror.org/02h1scg40', 'en', 1, 'https://ror.org/02h1scg40 Maternal and Child Health Care Hospital of Bao''an 宝安区妇幼保健院'),
(1343, 'https://ror.org/01786mp71', 'en', 1, 'https://ror.org/01786mp71 Institute of Agrobiological Sciences 生物機能利用研究部門'),
(1344, 'https://ror.org/048j5n646', 'en', 1, 'https://ror.org/048j5n646 National Aerospace University – Kharkiv Aviation Institute Национальный аэрокосмический университет имени Н. Е. Жуковского Національний аерокосмічний університет імені М. Є. Жуковського Харківський авіаційний інститут'),
(1345, 'https://ror.org/026mnhe80', 'en', 1, 'https://ror.org/026mnhe80 Chongqing Academy of Animal Science 重庆市畜牧科学院'),
(1346, 'https://ror.org/01p2t4k13', 'en', 1, 'https://ror.org/01p2t4k13 Heilongjiang Center for Tuberculosis Control and Prevention'),
(1347, 'https://ror.org/03k3bq214', 'en', 1, 'https://ror.org/03k3bq214 National Center of Biomedical Analysis 国家生物医学分析中心'),
(1348, 'https://ror.org/04j572391', 'en', 1, 'https://ror.org/04j572391 University Park Pathology Associates'),
(1349, 'https://ror.org/001v2ey71', 'en', 1, 'https://ror.org/001v2ey71 The Fourth People''s Hospital'),
(1350, 'https://ror.org/02caez234', 'en', 1, 'https://ror.org/02caez234 Fuzhou Dermatosis Prevention Hospital 福州市皮肤病防治院'),
(1351, 'https://ror.org/05v6r7450', 'en', 1, 'https://ror.org/05v6r7450 Shanghai Skin Disease Hospital 上海皮肤病医院长宁区门诊部'),
(1352, 'https://ror.org/02mg9y350', 'en', 1, 'https://ror.org/02mg9y350 Winona Medical Cosmetic Center 薇诺娜皮肤医疗美容中心'),
(1353, 'https://ror.org/0384ghs60', 'en', 1, 'https://ror.org/0384ghs60 National Center for Drug Screening 国家新药筛选中心'),
(1354, 'https://ror.org/05c3wfp46', 'en', 1, 'https://ror.org/05c3wfp46 Governor''s Institutes of Vermont'),
(1355, 'https://ror.org/01j8kmv80', 'en', 1, 'https://ror.org/01j8kmv80 Golmud People''s Hospital 格尔木市人民医院'),
(1356, 'https://ror.org/030pk6463', 'no_lang_code', 1, 'https://ror.org/030pk6463 Univax (United States)'),
(1357, 'https://ror.org/00wemg618', 'en', 1, 'https://ror.org/00wemg618 Youjiang Medical College for Nationalities 右江民族医学院'),
(1358, 'https://ror.org/03ddz1316', 'en', 1, 'https://ror.org/03ddz1316 Anhui Provincial Center for Disease Control and Prevention 安徽省疾病预防控制中心'),
(1359, 'https://ror.org/02p620w18', 'en', 1, 'https://ror.org/02p620w18 Blood Center of Zhejiang Province 浙江省血液中心'),
(1360, 'https://ror.org/025020z88', 'en', 1, 'https://ror.org/025020z88 Hunan Cancer Hospital'),
(1361, 'https://ror.org/00fh72m39', 'en', 1, 'https://ror.org/00fh72m39 Vladimir State University for the Humanities Владимирский государственный гуманитарный университет'),
(1362, 'https://ror.org/02ke5vh78', 'en', 1, 'https://ror.org/02ke5vh78 Tianjin Central Hospital of Gynecology Obstetrics 天津市中心妇产科医院'),
(1363, 'https://ror.org/037d0vf92', 'en', 1, 'https://ror.org/037d0vf92 Nizhny Novgorod State Technical University Нижегородский государственный технический университет'),
(1364, 'https://ror.org/00zb26x20', 'en', 1, 'https://ror.org/00zb26x20 Ural State University of Economics Уральский государственный экономический университет'),
(1365, 'https://ror.org/022ekqa73', 'en', 1, 'https://ror.org/022ekqa73 National Animal Husbandry Service 全国畜牧总站'),
(1366, 'https://ror.org/00a43vs85', 'en', 1, 'https://ror.org/00a43vs85 Ya''an Polytechnic College 雅安职业技术学院'),
(1367, 'https://ror.org/05x0kmy47', 'no_lang_code', 1, 'https://ror.org/05x0kmy47 Shaanxi Yulin Energy Group'),
(1368, 'https://ror.org/04983z422', 'en', 1, 'https://ror.org/04983z422 Taishan Medical University 泰山医学院'),
(1369, 'https://ror.org/049q0vg17', 'en', 1, 'https://ror.org/049q0vg17 Anqing City Hospital'),
(1370, 'https://ror.org/05qj9p026', 'en', 1, 'https://ror.org/05qj9p026 Lu''an First People''s Hospital'),
(1371, 'https://ror.org/04cfbdf66', 'no_lang_code', 1, 'https://ror.org/04cfbdf66 Shanghai GenomePilot Technology (China) 上海佰真生物科技有限公司'),
(1372, 'https://ror.org/03ej8bw49', 'en', 1, 'https://ror.org/03ej8bw49 Shanghai Changning Mental Health Center 长宁区精神卫生中心'),
(1373, 'https://ror.org/0432p8t34', 'en', 1, 'https://ror.org/0432p8t34 Guangdong Academy of Medical Sciences'),
(1374, 'https://ror.org/01qh26a66', 'en', 1, 'https://ror.org/01qh26a66 Sichuan Academy of Medical Sciences & Sichuan Provincial People''s Hospital 四川省中医药科学院'),
(1375, 'https://ror.org/05dfcz246', 'en', 1, 'https://ror.org/05dfcz246 Tianjin University of Traditional Chinese Medicine 天津中医药大学'),
(1376, 'https://ror.org/0389fv189', 'en', 1, 'https://ror.org/0389fv189 Guangxi Maternal and Child Health Hospital 广西妇幼保健院'),
(1377, 'https://ror.org/01z07eq06', 'en', 1, 'https://ror.org/01z07eq06 Hubei Polytechnic University 湖北理工学院'),
(1378, 'https://ror.org/04yajdn66', 'en', 1, 'https://ror.org/04yajdn66 Wuhan Medical Center for Women and Children'),
(1379, 'https://ror.org/03fz4ce66', 'en', 1, 'https://ror.org/03fz4ce66 Shanghai Institute of Hematology 上海血液学研究所'),
(1380, 'https://ror.org/0241gfe92', 'en', 1, 'https://ror.org/0241gfe92 University of Minnesota, Waseca'),
(1381, 'https://ror.org/035dmz332', 'en', 1, 'https://ror.org/035dmz332 World Health Organization - Australia'),
(1382, 'https://ror.org/045h96a50', 'en', 1, 'https://ror.org/045h96a50 Cooperative Research Centre for Polymers'),
(1383, 'https://ror.org/00vqhxg21', 'no_lang_code', 1, 'https://ror.org/00vqhxg21 SMEC (Australia)'),
(1384, 'https://ror.org/054dq5m81', 'no_lang_code', 1, 'https://ror.org/054dq5m81 Universal Hi-Tech Development'),
(1385, 'https://ror.org/03ncj7n33', 'no_lang_code', 1, 'https://ror.org/03ncj7n33 Jordanian Universities Network (Jordan)'),
(1386, 'https://ror.org/055f7t516', 'en', 1, 'https://ror.org/055f7t516 National Research University Higher School of Economics Высшая школа экономики Юғары иҡтисад мәктәбе'),
(1387, 'https://ror.org/009k7c907', 'en', 1, 'https://ror.org/009k7c907 Northern Health'),
(1388, 'https://ror.org/02d07gm56', 'en', 1, 'https://ror.org/02d07gm56 SUNY Korea 한국뉴욕주립대학교'),
(1389, 'https://ror.org/04nn0sh76', 'en', 1, 'https://ror.org/04nn0sh76 Mogilev State University of Food Technologies Магілёўскі дзяржаўны ўніверсітэт харчавання'),
(1390, 'https://ror.org/03tth1e03', 'en', 1, 'https://ror.org/03tth1e03 University of Life Sciences in Poznań Uniwersytet Przyrodniczy w Poznaniu'),
(1391, 'https://ror.org/05nrhca20', 'en', 1, 'https://ror.org/05nrhca20 West Australian Sleep Disorders Research Institute'),
(1392, 'https://ror.org/0277g6a74', 'en', 1, 'https://ror.org/0277g6a74 Douglass Hanly Moir Pathology'),
(1393, 'https://ror.org/04wngnd82', 'en', 1, 'https://ror.org/04wngnd82 University Heights Center'),
(1394, 'https://ror.org/05j37e495', 'en', 1, 'https://ror.org/05j37e495 South Western Sydney Local Health District'),
(1395, 'https://ror.org/03haqmz43', 'fr', 1, 'https://ror.org/03haqmz43 Université Félix Houphouët-Boigny'),
(1396, 'https://ror.org/012dxyr07', 'en', 1, 'https://ror.org/012dxyr07 University of Agriculture in Krakow Uniwersytet Rolniczy im. Hugona Kołłątaja w Krakowie'),
(1397, 'https://ror.org/01m1v6377', 'en', 1, 'https://ror.org/01m1v6377 Association Of Atlantic Universities'),
(1398, 'https://ror.org/00fqdfs68', 'en', 1, 'https://ror.org/00fqdfs68 Kuopio University Hospital'),
(1399, 'https://ror.org/05wjv2104', 'en', 1, 'https://ror.org/05wjv2104 University Hospital Innsbruck'),
(1400, 'https://ror.org/04rssyw40', 'en', 1, 'https://ror.org/04rssyw40 Universitatea de Științe Agronomice și Medicină Veterinară din București University of Agronomic Sciences and Veterinary Medicine of Bucharest'),
(1401, 'https://ror.org/00wksha49', 'en', 1, 'https://ror.org/00wksha49 National Institute of Biological Sciences, Beijing 北京生命科学研究所'),
(1402, 'https://ror.org/044pcn091', 'en', 1, 'https://ror.org/044pcn091 University of Mississippi Medical Center'),
(1403, 'https://ror.org/05pcyqv21', 'no_lang_code', 1, 'https://ror.org/05pcyqv21 Petro-Canada'),
(1404, 'https://ror.org/01egmr022', 'no_lang_code', 1, 'https://ror.org/01egmr022 Nantong Tumor Hospital 南通市肿瘤医院'),
(1405, 'https://ror.org/014v2t028', 'en', 1, 'https://ror.org/014v2t028 Shandong Pingyi Tianyu Museum of Natural History 山东省天宇自然博物馆'),
(1406, 'https://ror.org/02z2d6373', 'en', 1, 'https://ror.org/02z2d6373 Yunnan Academy of Agricultural Sciences 云南省农业科学院'),
(1407, 'https://ror.org/0389pw608', 'en', 1, 'https://ror.org/0389pw608 Center for High Pressure Science and Technology Advanced Research 北京高压科学研究中心'),
(1408, 'https://ror.org/00dr1cn74', 'en', 1, 'https://ror.org/00dr1cn74 Hangzhou Center for Disease Control and Prevention 杭州市疾病预防控制中心'),
(1409, 'https://ror.org/00zat6v61', 'en', 1, 'https://ror.org/00zat6v61 Guangzhou Medical University 广州医科大学'),
(1410, 'https://ror.org/04xfsbk97', 'en', 1, 'https://ror.org/04xfsbk97 Shenzhen Third People’s Hospital 深圳市第三人民医院'),
(1411, 'https://ror.org/00458wv14', 'en', 1, 'https://ror.org/00458wv14 Tianjin Beichen Hospital'),
(1412, 'https://ror.org/04tavf782', 'en', 1, 'https://ror.org/04tavf782 Beijing Computational Science Research Center 北京计算科学研究中心'),
(1413, 'https://ror.org/04tf4g123', 'en', 1, 'https://ror.org/04tf4g123 Sichuan Provincial Academy of Natural Resource Sciences 四川省自然资源科学院'),
(1414, 'https://ror.org/01grdhw06', 'en', 1, 'https://ror.org/01grdhw06 Center for Tuberculosis Control of Guangdong Province 广东省结核病控制'),
(1415, 'https://ror.org/05jtcqr88', 'no_lang_code', 1, 'https://ror.org/05jtcqr88 Thermo Fisher Scientific (China)'),
(1416, 'https://ror.org/0105k4695', 'no_lang_code', 1, 'https://ror.org/0105k4695 Novogene Bioinformatics Institute'),
(1417, 'https://ror.org/02tcape08', 'en', 1, 'https://ror.org/02tcape08 Xinjiang Academy of Animal Science 新疆维吾尔自治区畜牧科学院'),
(1418, 'https://ror.org/00pefnv05', 'en', 1, 'https://ror.org/00pefnv05 Museum of Heilongjiang Province 黑龙江省博物馆'),
(1419, 'https://ror.org/00fxgea47', 'no_lang_code', 1, 'https://ror.org/00fxgea47 Novartis (China) 北京诺华制药有限公司'),
(1420, 'https://ror.org/03jrn4k58', 'no_lang_code', 1, 'https://ror.org/03jrn4k58 GlaxoSmithKline (China)'),
(1421, 'https://ror.org/03ty5px05', 'en', 1, 'https://ror.org/03ty5px05 Hunan Entry-Exit Inspection and Quarantine Bureau'),
(1422, 'https://ror.org/03e05fb06', 'en', 1, 'https://ror.org/03e05fb06 DSO National Laboratories'),
(1423, 'https://ror.org/01jqz8f37', 'en', 1, 'https://ror.org/01jqz8f37 Wayne Memorial Health System'),
(1424, 'https://ror.org/000p7hm12', 'en', 1, 'https://ror.org/000p7hm12 National Skin Centre'),
(1425, 'https://ror.org/02gzfb532', 'en', 1, 'https://ror.org/02gzfb532 Taipei City Hospital 臺北市政府'),
(1426, 'https://ror.org/0470men05', 'en', 1, 'https://ror.org/0470men05 Tainan Municipal Hospital 台南市立醫院'),
(1427, 'https://ror.org/01ps4ag81', 'no_lang_code', 1, 'https://ror.org/01ps4ag81 Fountain Biopharma (Taiwan)'),
(1428, 'https://ror.org/05crbcr45', 'en', 1, 'https://ror.org/05crbcr45 Tokyo University of Agriculture 東京農業大学'),
(1429, 'https://ror.org/044s9gr80', 'en', 1, 'https://ror.org/044s9gr80 Japanese Red Cross Society, Japan 日本赤十字社'),
(1430, 'https://ror.org/0098kke80', 'no_lang_code', 1, 'https://ror.org/0098kke80 Rakuten (Japan) 楽天株式会社'),
(1431, 'https://ror.org/04hahwc19', 'en', 1, 'https://ror.org/04hahwc19 Meiji University of Integrative Medicine 明治国際医療大学'),
(1432, 'https://ror.org/006gdh317', 'en', 1, 'https://ror.org/006gdh317 Meijo Hospital 名城病院'),
(1433, 'https://ror.org/00f2txz25', 'no_lang_code', 1, 'https://ror.org/00f2txz25 Kitasato University 北里大学'),
(1434, 'https://ror.org/03j7khn53', 'en', 1, 'https://ror.org/03j7khn53 Shizuoka Red Cross Hospital 静岡赤十字病院'),
(1435, 'https://ror.org/03vc89b25', 'en', 1, 'https://ror.org/03vc89b25 Osaka Bio Headquarters'),
(1436, 'https://ror.org/0015hye09', 'no_lang_code', 1, 'https://ror.org/0015hye09 Tokyo Metropolitan Ohtsuka Hospital 東京都立大塚病院'),
(1437, 'https://ror.org/0069p7h69', 'en', 1, 'https://ror.org/0069p7h69 Tokushima Breast Care Clinic とくしまブレストケアクリニック'),
(1438, 'https://ror.org/017kgtg39', 'en', 1, 'https://ror.org/017kgtg39 Fukuoka Children''s Hospital and Medical Center for Infectious Diseases 福岡市立こども病院'),
(1439, 'https://ror.org/0520j5d52', 'no_lang_code', 1, 'https://ror.org/0520j5d52 Peptidream (Japan) ペプチドリーム'),
(1440, 'https://ror.org/036c3t778', 'en', 1, 'https://ror.org/036c3t778 Niigata Prefectural Museum of History 新潟県立歴史博物館'),
(1441, 'https://ror.org/05rkz5e28', 'no_lang_code', 1, 'https://ror.org/05rkz5e28 Toranomon Hospital 虎の門病院'),
(1442, 'https://ror.org/00av3hs56', 'en', 1, 'https://ror.org/00av3hs56 Chubu Rosai Hospital 中部ろうさい病院'),
(1443, 'https://ror.org/03na8p459', 'no_lang_code', 1, 'https://ror.org/03na8p459 Yokohama Rosai Hospital 横浜労災病院'),
(1444, 'https://ror.org/021m54z79', 'no_lang_code', 1, 'https://ror.org/021m54z79 Takara (Japan) 宝ホールディングス株式会社'),
(1445, 'https://ror.org/00krab219', 'en', 1, 'https://ror.org/00krab219 Nippon Medical School 日本医科大学'),
(1446, 'https://ror.org/0431x1p15', 'en', 1, 'https://ror.org/0431x1p15 Gunma Children''s Medical Center 群馬県立小児医療センター'),
(1447, 'https://ror.org/02yyjwk88', 'no_lang_code', 1, 'https://ror.org/02yyjwk88 Kyowa-kako (Japan)'),
(1448, 'https://ror.org/004t34t94', 'no_lang_code', 1, 'https://ror.org/004t34t94 Tsuchiura Kyodo General Hospital 総合病院 土浦協同病院'),
(1449, 'https://ror.org/023kfg220', 'en', 1, 'https://ror.org/023kfg220 National Institute for Agro-Environmental Sciences 農業環境変動研究センター'),
(1450, 'https://ror.org/02k72jz38', 'no_lang_code', 1, 'https://ror.org/02k72jz38 TagCyx Biotechnologies (Japan)'),
(1451, 'https://ror.org/03zzyap02', 'en', 1, 'https://ror.org/03zzyap02 Tohoku Medical Megabank Organization 東北メディカル・メガバンク機構'),
(1452, 'https://ror.org/02bcf5b42', 'no_lang_code', 1, 'https://ror.org/02bcf5b42 Foxconn (Japan)'),
(1453, 'https://ror.org/05g91z486', 'no_lang_code', 1, 'https://ror.org/05g91z486 Organ Technologies (Japan) オーガンテクノロジーズ'),
(1454, 'https://ror.org/011tm7n37', 'no_lang_code', 1, 'https://ror.org/011tm7n37 Panasonic (Japan) パナソニック'),
(1455, 'https://ror.org/045kb1d14', 'en', 1, 'https://ror.org/045kb1d14 Kyoto Medical Center 京都医療センター'),
(1456, 'https://ror.org/01kw6jz33', 'no_lang_code', 1, 'https://ror.org/01kw6jz33 BGI Group (Japan)'),
(1457, 'https://ror.org/0457edg47', 'no_lang_code', 1, 'https://ror.org/0457edg47 HREM Research (Japan) 有限会社 HREM'),
(1458, 'https://ror.org/00hbq5j06', 'no_lang_code', 1, 'https://ror.org/00hbq5j06 Ecogenomics (Japan)'),
(1459, 'https://ror.org/03xvpaf72', 'en', 1, 'https://ror.org/03xvpaf72 Wakasa History and Folklore Museum 福井県立 若狭歴史博物館'),
(1460, 'https://ror.org/00m9ydx43', 'en', 1, 'https://ror.org/00m9ydx43 National Hospital Organization Mito Medical Center 国立病院機構水戸医療センター'),
(1461, 'https://ror.org/0447kww10', 'en', 1, 'https://ror.org/0447kww10 University of Miyazaki 宮崎大学'),
(1462, 'https://ror.org/04pf1fm38', 'en', 1, 'https://ror.org/04pf1fm38 Seirei Social Welfare Community'),
(1463, 'https://ror.org/0299dqs22', 'en', 1, 'https://ror.org/0299dqs22 JA Toride Medical Center JAとりで総合医療センター'),
(1464, 'https://ror.org/010bv4c75', 'no_lang_code', 1, 'https://ror.org/010bv4c75 Tsukuba Memorial Hospital 筑波記念病院'),
(1465, 'https://ror.org/038ckz871', 'no_lang_code', 1, 'https://ror.org/038ckz871 Kaneka (Japan) 株式会社カネカ'),
(1466, 'https://ror.org/0493bmq37', 'no_lang_code', 1, 'https://ror.org/0493bmq37 Fujifilm (Japan) 富士フイルム株式会社'),
(1467, 'https://ror.org/03pq6f684', 'en', 1, 'https://ror.org/03pq6f684 Asian Institute of Gastroenterology'),
(1468, 'https://ror.org/02z9d3e27', 'en', 1, 'https://ror.org/02z9d3e27 Dr. Mohan''s Diabetes Specialities Centre'),
(1469, 'https://ror.org/02fv7x872', 'en', 1, 'https://ror.org/02fv7x872 Deenanath Mangeshkar Hospital and Research Center दीनानाथ मंगेशकर रुग्णालय'),
(1470, 'https://ror.org/01n67jr26', 'en', 1, 'https://ror.org/01n67jr26 Forest Department Sarawak'),
(1471, 'https://ror.org/02fjqfr36', 'en', 1, 'https://ror.org/02fjqfr36 Wildlife Conservation Society Indonesia'),
(1472, 'https://ror.org/00pf0g237', 'no_lang_code', 1, 'https://ror.org/00pf0g237 Theragen'),
(1473, 'https://ror.org/03khjyh83', 'en', 1, 'https://ror.org/03khjyh83 Genome Research Foundation'),
(1474, 'https://ror.org/01ejxf797', 'en', 1, 'https://ror.org/01ejxf797 Mohamed I University Université Mohammed Ier جامعة محمد الأول'),
(1475, 'https://ror.org/02zme4e72', 'no_lang_code', 1, 'https://ror.org/02zme4e72 JEOL (Japan) 日本電子'),
(1476, 'https://ror.org/02pfhv998', 'no_lang_code', 1, 'https://ror.org/02pfhv998 Nongwoo Bio (South Korea)'),
(1477, 'https://ror.org/01w62yz22', 'en', 1, 'https://ror.org/01w62yz22 Advanced Institute of Convergence Technology 차세대융합기술연구원'),
(1478, 'https://ror.org/00s9dpb54', 'en', 1, 'https://ror.org/00s9dpb54 Myongji University 명지대학교'),
(1479, 'https://ror.org/023cpc062', 'no_lang_code', 1, 'https://ror.org/023cpc062 DNA Link (South Korea)'),
(1480, 'https://ror.org/04sr36h49', 'no_lang_code', 1, 'https://ror.org/04sr36h49 Seeders (South Korea)'),
(1481, 'https://ror.org/01sytk573', 'en', 1, 'https://ror.org/01sytk573 National Science Museum'),
(1482, 'https://ror.org/02kf0fj54', 'no_lang_code', 1, 'https://ror.org/02kf0fj54 AnyGen (South Korea)'),
(1483, 'https://ror.org/05tqne909', 'no_lang_code', 1, 'https://ror.org/05tqne909 (주)인실리코젠 Insilicogen (South Korea)'),
(1484, 'https://ror.org/058kbr222', 'no_lang_code', 1, 'https://ror.org/058kbr222 Qurient (South Korea)'),
(1485, 'https://ror.org/037rt4a55', 'en', 1, 'https://ror.org/037rt4a55 National Academy of Agricultural Science 국립농업과학원'),
(1486, 'https://ror.org/00n14a494', 'en', 1, 'https://ror.org/00n14a494 Korea Polar Research Institute 극지연구소'),
(1487, 'https://ror.org/02t69m177', 'no_lang_code', 1, 'https://ror.org/02t69m177 Adipogen (South Korea)'),
(1488, 'https://ror.org/02bwjrg36', 'en', 1, 'https://ror.org/02bwjrg36 Academia Nacional Superior de Orquestra'),
(1489, 'https://ror.org/00chxjy07', 'en', 1, 'https://ror.org/00chxjy07 Fundação Conservatório Regional de Gaia Gaia Regional Conservatory Foundation'),
(1490, 'https://ror.org/05x14am29', 'en', 1, 'https://ror.org/05x14am29 Escola Superior Gallaecia Gallaecia Higher School'),
(1491, 'https://ror.org/00t0h7472', 'pt', 1, 'https://ror.org/00t0h7472 Escola Superior de Educadores de Infância Maria Ulrich'),
(1492, 'https://ror.org/03720tm64', 'pt', 1, 'https://ror.org/03720tm64 Fundação Ricardo do Espírito Santo Silva'),
(1493, 'https://ror.org/05xwc2w62', 'pt', 1, 'https://ror.org/05xwc2w62 Escola Superior de Educação de Almeida Garrett'),
(1494, 'https://ror.org/03378k036', 'pt', 1, 'https://ror.org/03378k036 Institute of Higher Studies of Fafe Instituto de Estudos Superiores de Fafe LDA'),
(1495, 'https://ror.org/020nckd56', 'pt', 1, 'https://ror.org/020nckd56 Instituto Superior de Ciências da Administração'),
(1496, 'https://ror.org/01g2xkw11', 'pt', 1, 'https://ror.org/01g2xkw11 Instituto Superior de Gestão e Administração de Santarém'),
(1497, 'https://ror.org/02khzxe16', 'pt', 1, 'https://ror.org/02khzxe16 Instituto Superior de Comunicação Empresarial'),
(1498, 'https://ror.org/002gmks55', 'pt', 1, 'https://ror.org/002gmks55 Instituto Superior de Educação e Trabalho'),
(1499, 'https://ror.org/042vq9b25', 'pt', 1, 'https://ror.org/042vq9b25 Instituto Superior de Educação e Ciências'),
(1500, 'https://ror.org/00p2tmy87', 'pt', 1, 'https://ror.org/00p2tmy87 Instituto Superior de Espinho'),
(1501, 'https://ror.org/02b730m35', 'pt', 1, 'https://ror.org/02b730m35 Instituto Superior de Ciências da Informação e da Administração'),
(1502, 'https://ror.org/00ykktm91', 'pt', 1, 'https://ror.org/00ykktm91 Instituto Superior de Línguas e Administração'),
(1503, 'https://ror.org/04evw4v13', 'pt', 1, 'https://ror.org/04evw4v13 Instituto Superior de Paços de Brandão'),
(1504, 'https://ror.org/0307h0f23', 'en', 1, 'https://ror.org/0307h0f23 Higher Institute of Police Sciences and Homeland Security Instituto Superior de Ciências Policiais e Segurança Interna'),
(1505, 'https://ror.org/042x68w22', 'pt', 1, 'https://ror.org/042x68w22 Escola Superior de Enfermagem Dr. José Timóteo Montalvão Machado'),
(1506, 'https://ror.org/05368pf49', 'en', 1, 'https://ror.org/05368pf49 Institute of the Pupils of the Army Instituto dos Pupilos do Exército'),
(1507, 'https://ror.org/00s58vq35', 'en', 1, 'https://ror.org/00s58vq35 Instituto Superior Bissaya Barreto'),
(1508, 'https://ror.org/04bpf7m84', 'pt', 1, 'https://ror.org/04bpf7m84 Escola Superior de Saúde Ribeiro Sanches'),
(1509, 'https://ror.org/00jkkm943', 'pt', 1, 'https://ror.org/00jkkm943 Instituto Superior Manuel Teixeira Gomes'),
(1510, 'https://ror.org/04f761z39', 'pt', 1, 'https://ror.org/04f761z39 Instituto Superior da Maia'),
(1511, 'https://ror.org/04anjm411', 'en', 1, 'https://ror.org/04anjm411 Instituto Superior D. Dinis'),
(1512, 'https://ror.org/05gzcpj23', 'pt', 1, 'https://ror.org/05gzcpj23 Escola Superior de Saúde do Alcoitão'),
(1513, 'https://ror.org/03f94es11', 'pt', 1, 'https://ror.org/03f94es11 Instituto Superior Dom Afonso III'),
(1514, 'https://ror.org/02182hd81', 'pt', 1, 'https://ror.org/02182hd81 Escola do Serviço de Saúde Militar'),
(1515, 'https://ror.org/01n85qf05', 'pt', 1, 'https://ror.org/01n85qf05 Escola Superior de Enfermagem S. Francisco das Misericórdias'),
(1516, 'https://ror.org/015yzft41', 'pt', 1, 'https://ror.org/015yzft41 Instituto Superior Politécnico do Oeste'),
(1517, 'https://ror.org/04bcdt432', 'pt', 1, 'https://ror.org/04bcdt432 European University of Lisbon Universidade Europeia'),
(1518, 'https://ror.org/00k57ac30', 'pt', 1, 'https://ror.org/00k57ac30 Instituto Superior de Novas Profissões'),
(1519, 'https://ror.org/00z847107', 'pt', 1, 'https://ror.org/00z847107 Escola Superior de Educação de Torres Novas'),
(1520, 'https://ror.org/02aea0q64', 'pt', 1, 'https://ror.org/02aea0q64 IADE Superior de Marketing e Publicidade'),
(1521, 'https://ror.org/03pwcc270', 'en', 1, 'https://ror.org/03pwcc270 Auburn University System'),
(1522, 'https://ror.org/05jbt9m15', 'en', 1, 'https://ror.org/05jbt9m15 Universidad de Arkansas University of Arkansas at Fayetteville Université de l''arkansas'),
(1523, 'https://ror.org/036c27j91', 'en', 1, 'https://ror.org/036c27j91 Washington University Medical Center'),
(1524, 'https://ror.org/03rtgjq94', 'en', 1, 'https://ror.org/03rtgjq94 University of South Carolina System'),
(1525, 'https://ror.org/00r9g7t11', 'en', 1, 'https://ror.org/00r9g7t11 Oregon University System'),
(1526, 'https://ror.org/05vz28418', 'en', 1, 'https://ror.org/05vz28418 Southern Illinois University System Université de l''illinois du sud'),
(1527, 'https://ror.org/03b6sp482', 'en', 1, 'https://ror.org/03b6sp482 Southern University System'),
(1528, 'https://ror.org/03xms6995', 'en', 1, 'https://ror.org/03xms6995 Central Police University'),
(1529, 'https://ror.org/0475w6974', 'no_lang_code', 1, 'https://ror.org/0475w6974 Kinjo Gakuin University 金城学院大学'),
(1530, 'https://ror.org/03d4d3711', 'en', 1, 'https://ror.org/03d4d3711 Central Taiwan University of Science and Technology'),
(1531, 'https://ror.org/01b6d9h22', 'hr', 1, 'https://ror.org/01b6d9h22 Klinička bolnica Merkur'),
(1532, 'https://ror.org/03aam9155', 'en', 1, 'https://ror.org/03aam9155 KLE University'),
(1533, 'https://ror.org/03n20pp93', 'en', 1, 'https://ror.org/03n20pp93 Awadhesh Pratap Singh University अवधेश प्रताप सिंह विश्वविद्यालय'),
(1534, 'https://ror.org/03ej9xm26', 'pt', 1, 'https://ror.org/03ej9xm26 Hospital de Clínicas Universidade Federal do Paraná'),
(1535, 'https://ror.org/02wc1yz29', 'en', 1, 'https://ror.org/02wc1yz29 Eye & ENT Hospital of Fudan University'),
(1536, 'https://ror.org/01jmsem62', 'es', 1, 'https://ror.org/01jmsem62 Hospital General Universitario de Elche'),
(1537, 'https://ror.org/055p2yz63', 'es', 1, 'https://ror.org/055p2yz63 Hospital General Universitario de Albacete'),
(1538, 'https://ror.org/02f30ff69', 'es', 1, 'https://ror.org/02f30ff69 Hospital General Universitario de Ciudad Real'),
(1539, 'https://ror.org/00cfm3y81', 'es', 1, 'https://ror.org/00cfm3y81 Hospital General Universitario Morales Meseguer'),
(1540, 'https://ror.org/03e1ayz78', 'en', 1, 'https://ror.org/03e1ayz78 University of Minnesota Medical Center'),
(1541, 'https://ror.org/057d2v504', 'en', 1, 'https://ror.org/057d2v504 Kohat University of Science and Technology'),
(1542, 'https://ror.org/04r69jb93', 'en', 1, 'https://ror.org/04r69jb93 Kokushikan University 国士舘大学'),
(1543, 'https://ror.org/02mfapa96', 'en', 1, 'https://ror.org/02mfapa96 Acharya Nagarjuna University ఆచార్య నాగార్జున విశ్వవిద్యాలయం'),
(1544, 'https://ror.org/02917wp91', 'en', 1, 'https://ror.org/02917wp91 Hospital of the University of Pennsylvania'),
(1545, 'https://ror.org/0373nm262', 'en', 1, 'https://ror.org/0373nm262 Kongju National University 공주대학교'),
(1546, 'https://ror.org/04vrsb288', 'en', 1, 'https://ror.org/04vrsb288 Far Eastern State Medical University Дальневосточный государственный медицинский университет'),
(1547, 'https://ror.org/02w043707', 'en', 1, 'https://ror.org/02w043707 University of Aden جامعة عدن'),
(1548, 'https://ror.org/04f558b63', 'pt', 1, 'https://ror.org/04f558b63 Centro Universitário Filadélfia'),
(1549, 'https://ror.org/03a8gac78', 'es', 1, 'https://ror.org/03a8gac78 Hospital Del Mar'),
(1550, 'https://ror.org/03pm2yz25', 'en', 1, 'https://ror.org/03pm2yz25 Kumamoto Health Science University 熊本保健科学大学'),
(1551, 'https://ror.org/02vgs9327', 'en', 1, 'https://ror.org/02vgs9327 Kumamoto University Hospital 熊本大学医学部附属病院'),
(1552, 'https://ror.org/038e9x269', 'no_lang_code', 1, 'https://ror.org/038e9x269 Kumaun University कुमाऊँ विश्वविद्यालय குமாவுன் பல்கலைக்கழகம்'),
(1553, 'https://ror.org/01gzkdv90', 'en', 1, 'https://ror.org/01gzkdv90 Kun Shan University'),
(1554, 'https://ror.org/035rhx828', 'en', 1, 'https://ror.org/035rhx828 Kunming University 昆明学院'),
(1555, 'https://ror.org/02yj55q56', 'en', 1, 'https://ror.org/02yj55q56 Kunsan National University 군산대학교'),
(1556, 'https://ror.org/02ptw3r05', 'es', 1, 'https://ror.org/02ptw3r05 Hospital Universitario Son Dureta'),
(1557, 'https://ror.org/02a5q3y73', 'es', 1, 'https://ror.org/02a5q3y73 Hospital Universitario HM Madrid'),
(1558, 'https://ror.org/055gkcy74', 'en', 1, 'https://ror.org/055gkcy74 Union Hospital'),
(1559, 'https://ror.org/05xcx0k58', 'en', 1, 'https://ror.org/05xcx0k58 Aga Khan University Hospital'),
(1560, 'https://ror.org/004dwfr15', 'en', 1, 'https://ror.org/004dwfr15 Kursk State Medical University Курский государственный медицинский университет'),
(1561, 'https://ror.org/03rppv730', 'en', 1, 'https://ror.org/03rppv730 Aga Khan University Hospital Nairobi'),
(1562, 'https://ror.org/014nx0w70', 'es', 1, 'https://ror.org/014nx0w70 Hospital Universitario Austral'),
(1563, 'https://ror.org/02e9zc863', 'en', 1, 'https://ror.org/02e9zc863 Kwangwoon University 광운대학교'),
(1564, 'https://ror.org/032xf8h46', 'en', 1, 'https://ror.org/032xf8h46 Kyonggi University 경기대학교'),
(1565, 'https://ror.org/01mqvjv41', 'pt', 1, 'https://ror.org/01mqvjv41 Federal University of Mato Grosso Universidade Federal de Mato Grosso'),
(1566, 'https://ror.org/02s3d7j94', 'en', 1, 'https://ror.org/02s3d7j94 Chang Jung Christian University'),
(1567, 'https://ror.org/04ts4qa58', 'en', 1, 'https://ror.org/04ts4qa58 Changwon National University 창원대학교'),
(1568, 'https://ror.org/03zhhr656', 'en', 1, 'https://ror.org/03zhhr656 Kyoto University of Education 京都教育大学'),
(1569, 'https://ror.org/01q1jaw52', 'en', 1, 'https://ror.org/01q1jaw52 AHEPA University Hospital Πανεπιστημιακό Νοσοκομείο ΑΧΕΠΑ'),
(1570, 'https://ror.org/01rws6r75', 'en', 1, 'https://ror.org/01rws6r75 Ahvaz Jundishapur University of Medical Sciences دانشگاه علوم پزشکی جندی‌شاپور اهواز'),
(1571, 'https://ror.org/05h9pgm95', 'en', 1, 'https://ror.org/05h9pgm95 Kyungsung University 경성대학교'),
(1572, 'https://ror.org/03bwzch55', 'en', 1, 'https://ror.org/03bwzch55 Kyushu Dental University 九州歯科大学'),
(1573, 'https://ror.org/01b78mz79', 'pt', 1, 'https://ror.org/01b78mz79 Federal University of Santa Maria Universidad Federal de Santa María Universidade Federal de Santa Maria'),
(1574, 'https://ror.org/01wqrpc44', 'en', 1, 'https://ror.org/01wqrpc44 Kyushu Sangyo University 九州産業大学'),
(1575, 'https://ror.org/04scbtr44', 'es', 1, 'https://ror.org/04scbtr44 Hospital Universitario de Fuenlabrada'),
(1576, 'https://ror.org/03m964n84', 'en', 1, 'https://ror.org/03m964n84 Aichi University of Education 愛知教育大学'),
(1577, 'https://ror.org/00s4vhs88', 'es', 1, 'https://ror.org/00s4vhs88 Doctor Negrín University Hospital Hospital Universitario de Gran Canaria Doctor Negrín'),
(1578, 'https://ror.org/008j59125', 'en', 1, 'https://ror.org/008j59125 Aintree University Hospital'),
(1579, 'https://ror.org/05bz1tw26', 'pt', 1, 'https://ror.org/05bz1tw26 Hospital de Santa Maria'),
(1580, 'https://ror.org/01phydj90', 'en', 1, 'https://ror.org/01phydj90 Akdeniz University Hospital Akdeniz Üniversitesi Hastanesi'),
(1581, 'https://ror.org/03bag5a72', 'en', 1, 'https://ror.org/03bag5a72 Ladoke Akintola University of Technology Teaching Hospital'),
(1582, 'https://ror.org/00gvw6327', 'en', 1, 'https://ror.org/00gvw6327 King George''s Medical University छत्रपति शाहूजी महाराज आयुर्विज्ञान विश्वविद्यालय'),
(1583, 'https://ror.org/01za8fg18', 'en', 1, 'https://ror.org/01za8fg18 Lagos State University Yunifásítì Ìpínlẹ̀ Èkó'),
(1584, 'https://ror.org/011bdtx65', 'en', 1, 'https://ror.org/011bdtx65 Cheng Shiu University'),
(1585, 'https://ror.org/00gkd5869', 'en', 1, 'https://ror.org/00gkd5869 Lagos University Teaching Hospital'),
(1586, 'https://ror.org/02gen2282', 'pt', 1, 'https://ror.org/02gen2282 Federal University from Jequitinhonha and Mucuri''s Valleys Universidade Federal dos Vales do Jequitinhonha e Mucuri'),
(1587, 'https://ror.org/03panb555', 'en', 1, 'https://ror.org/03panb555 Lanzhou University of Technology 兰州理工大学'),
(1588, 'https://ror.org/02jr6tp70', 'en', 1, 'https://ror.org/02jr6tp70 Azienda Ospedaliera Universitaria Federico II Federico II University Hospital'),
(1589, 'https://ror.org/02erhaz63', 'en', 1, 'https://ror.org/02erhaz63 Lanzhou University Second Hospital'),
(1590, 'https://ror.org/04g27v387', 'ca', 1, 'https://ror.org/04g27v387 Hospital Universitari de Girona Doctor Josep Trueta Residencia Sanitaria de la Seguridad Social de Gerona'),
(1591, 'https://ror.org/05vhczg54', 'en', 1, 'https://ror.org/05vhczg54 Feng Chia University'),
(1592, 'https://ror.org/028jh2126', 'en', 1, 'https://ror.org/028jh2126 Al al-Bayt University جامعة آل البيت'),
(1593, 'https://ror.org/00g6ka752', 'en', 1, 'https://ror.org/00g6ka752 Ferdowsi University of Mashhad دانشگاه فردوسی مشهد'),
(1594, 'https://ror.org/03ke9vf24', 'en', 1, 'https://ror.org/03ke9vf24 Al-Arab Medical University جامعة العرب الطبية'),
(1595, 'https://ror.org/00pcrz470', 'en', 1, 'https://ror.org/00pcrz470 Chengdu University of Traditional Chinese Medicine 成都中医药大学'),
(1596, 'https://ror.org/00hpnj894', 'es', 1, 'https://ror.org/00hpnj894 Hospital Clínico Universitario de Valencia'),
(1597, 'https://ror.org/044kkfr75', 'sv', 1, 'https://ror.org/044kkfr75 AlbaNova'),
(1598, 'https://ror.org/022yckc24', 'pt', 1, 'https://ror.org/022yckc24 Hospital Universitário Evangélico de Curitiba'),
(1599, 'https://ror.org/02834m470', 'en', 1, 'https://ror.org/02834m470 Chia Nan University of Pharmacy and Science'),
(1600, 'https://ror.org/01435q086', 'es', 1, 'https://ror.org/01435q086 Hospital Universitario Fundación Alcorcón'),
(1601, 'https://ror.org/05txkk980', 'es', 1, 'https://ror.org/05txkk980 Hospital Universitario Infanta Cristina'),
(1602, 'https://ror.org/04cbm7s05', 'es', 1, 'https://ror.org/04cbm7s05 Hospital Universitario Insular de Gran Canaria'),
(1603, 'https://ror.org/05x6qnc69', 'en', 1, 'https://ror.org/05x6qnc69 Lebanese University Université Libanaise الجامعة اللبنانية'),
(1604, 'https://ror.org/05n13be63', 'en', 1, 'https://ror.org/05n13be63 Children''s Hospital of Fudan University'),
(1605, 'https://ror.org/04k6zqn86', 'en', 1, 'https://ror.org/04k6zqn86 Beijing Hua Xin Hospital 北京华信医院'),
(1606, 'https://ror.org/028hv5492', 'en', 1, 'https://ror.org/028hv5492 University Hospital Leipzig Universitätsklinikum Leipzig'),
(1607, 'https://ror.org/03kw9gc02', 'en', 1, 'https://ror.org/03kw9gc02 Aligarh Muslim University Université musulmane d''aligarh جامعہ علی گڑھ अलीगढ़ मुस्लिम विश्वविद्यालय আলিগড় মুসলিম বিশ্ববিদ্যালয় ਅਲੀਗੜ ਮੁਸਲਿਮ ਯੂਨੀਵਰਸਿਟੀ அலிகார் முஸ்லிம் பல்கலைக்கழகம் అలీఘర్ ముస్లిం విశ్వవిద్యాలయం ಅಲಿಘರ್ ಮುಸ್ಲಿಮ್ ವಿಶ್ವವಿದ್ಯಾಲಯ അലിഗഢ് മുസ്ലിം സർവകലാശാല'),
(1608, 'https://ror.org/05ncvf986', 'en', 1, 'https://ror.org/05ncvf986 Sam Higginbottom Institute of Agriculture सैम हिग्गिनबॉटम कृषि, प्रौद्योगिकी एवं विज्ञान संस्थान അലഹബാദ് അഗ്രികൾച്ചറൽ ഇൻസ്റ്റിറ്റ്യൂട്ട്'),
(1609, 'https://ror.org/02vtd2q19', 'es', 1, 'https://ror.org/02vtd2q19 Hospital Universitario Reina Sofía Reina Sofia Hospital'),
(1610, 'https://ror.org/059ebsr57', 'es', 1, 'https://ror.org/059ebsr57 Hospital Universitario de San Vicente Fundación'),
(1611, 'https://ror.org/006pw7k84', 'en', 1, 'https://ror.org/006pw7k84 Ambrose Alli University Yunifásítì Ambrose Alli'),
(1612, 'https://ror.org/025fyfd20', 'en', 1, 'https://ror.org/025fyfd20 Children''s Hospital of Zhejiang University'),
(1613, 'https://ror.org/05s3h8004', 'es', 1, 'https://ror.org/05s3h8004 Hospital Universitario Severo Ochoa'),
(1614, 'https://ror.org/04gzbav43', 'en', 1, 'https://ror.org/04gzbav43 Amirkabir University of Technology دانشگاه صنعتی امیرکبیر'),
(1615, 'https://ror.org/011apjk30', 'fr', 1, 'https://ror.org/011apjk30 Centre Hospitalier Universitaire Brugmann'),
(1616, 'https://ror.org/04a6gpn58', 'pt', 1, 'https://ror.org/04a6gpn58 Centro Universitário São Camilo'),
(1617, 'https://ror.org/056221z03', 'en', 1, 'https://ror.org/056221z03 Centre Hospitalier Universitaire de Treichville University Hospital Medical Center at Treichville'),
(1618, 'https://ror.org/04m61mj84', 'fr', 1, 'https://ror.org/04m61mj84 Centre Hospitalier Universitaire Henri-Mondor'),
(1619, 'https://ror.org/0327f3359', 'en', 1, 'https://ror.org/0327f3359 Anhui Agricultural University 安徽农业大学'),
(1620, 'https://ror.org/03et1qs84', 'en', 1, 'https://ror.org/03et1qs84 Centre médical universitaire de loma linda Loma Linda University Medical Center'),
(1621, 'https://ror.org/05htjfp05', 'en', 1, 'https://ror.org/05htjfp05 Loma Linda University Children''s Hospital'),
(1622, 'https://ror.org/03n5gdd09', 'en', 1, 'https://ror.org/03n5gdd09 Anhui Provincial Hospital'),
(1623, 'https://ror.org/03pfmgq50', 'en', 1, 'https://ror.org/03pfmgq50 Fooyin University'),
(1624, 'https://ror.org/020jkns84', 'en', 1, 'https://ror.org/020jkns84 Foundation University Medical College'),
(1625, 'https://ror.org/03x1jna21', 'en', 1, 'https://ror.org/03x1jna21 Central China Normal University 华中师范大学'),
(1626, 'https://ror.org/04xzj3x20', 'en', 1, 'https://ror.org/04xzj3x20 LAC+USC Medical Center'),
(1627, 'https://ror.org/03q3s7962', 'en', 1, 'https://ror.org/03q3s7962 Huizhou University 惠州学院'),
(1628, 'https://ror.org/0127ytz78', 'en', 1, 'https://ror.org/0127ytz78 Anqing Normal University 安庆师范学院'),
(1629, 'https://ror.org/040qhpb54', 'en', 1, 'https://ror.org/040qhpb54 Aomori University 青森大学'),
(1630, 'https://ror.org/020sa1s57', 'en', 1, 'https://ror.org/020sa1s57 Aomori University of Health and Welfare 青森県立保健大学'),
(1631, 'https://ror.org/04gd4wn47', 'en', 1, 'https://ror.org/04gd4wn47 Arabian Gulf University جامعة الخليج العربي دانشگاه خلیج عربی'),
(1632, 'https://ror.org/00ngrq502', 'en', 1, 'https://ror.org/00ngrq502 Arak University دانشگاه اراک'),
(1633, 'https://ror.org/04n4dcv16', 'en', 1, 'https://ror.org/04n4dcv16 Ardabil University of Medical Sciences دانشگاه علوم پزشکی اردبیل'),
(1634, 'https://ror.org/04j3vr751', 'en', 1, 'https://ror.org/04j3vr751 Hunan University of Technology'),
(1635, 'https://ror.org/02f2vsx71', 'no_lang_code', 1, 'https://ror.org/02f2vsx71 Hungkuang University'),
(1636, 'https://ror.org/02w5pxz31', 'en', 1, 'https://ror.org/02w5pxz31 Assiut University Hospitals'),
(1637, 'https://ror.org/01p3tpn79', 'es', 1, 'https://ror.org/01p3tpn79 Hospital Universitari Arnau de Vilanova'),
(1638, 'https://ror.org/04d7e4m76', 'en', 1, 'https://ror.org/04d7e4m76 I-Shou University'),
(1639, 'https://ror.org/05xcyt367', 'en', 1, 'https://ror.org/05xcyt367 Loyola University Medical Center'),
(1640, 'https://ror.org/04m3xd186', 'pt', 1, 'https://ror.org/04m3xd186 Centro Universitário de Belo Horizonte Centro Universitário de belo Horizonte'),
(1641, 'https://ror.org/05epcpp46', 'en', 1, 'https://ror.org/05epcpp46 Asahi University 朝日大学'),
(1642, 'https://ror.org/01mqsmm97', 'es', 1, 'https://ror.org/01mqsmm97 Hospital Regional Universitario de Málaga'),
(1643, 'https://ror.org/02558wk32', 'en', 1, 'https://ror.org/02558wk32 Islamic Azad University, Arak دانشگاه آزاد اسلامی واحد اراک'),
(1644, 'https://ror.org/016a0n751', 'en', 1, 'https://ror.org/016a0n751 Azerbaijan Medical University Azərbaycan Tibb Universiteti Азербайджанский медицинский университет'),
(1645, 'https://ror.org/05hn3aw08', 'en', 1, 'https://ror.org/05hn3aw08 Lincoln University - Missouri'),
(1646, 'https://ror.org/00sm8k518', 'it', 1, 'https://ror.org/00sm8k518 Azienda Ospedaliera Universitaria Integrata Verona'),
(1647, 'https://ror.org/02s7et124', 'it', 1, 'https://ror.org/02s7et124 Azienda Ospedaliera Universitaria Senese'),
(1648, 'https://ror.org/05v1y0t93', 'en', 1, 'https://ror.org/05v1y0t93 China Jiliang University'),
(1649, 'https://ror.org/04vgkzj18', 'en', 1, 'https://ror.org/04vgkzj18 Ibaraki Prefectural University of Health Sciences 茨城県立医療大学'),
(1650, 'https://ror.org/01fbdn283', 'en', 1, 'https://ror.org/01fbdn283 Magee-Womens Hospital'),
(1651, 'https://ror.org/0213f0637', 'it', 1, 'https://ror.org/0213f0637 Azienda Ospedaliero Universitaria Ospedali Riuniti'),
(1652, 'https://ror.org/02s7c9e98', 'en', 1, 'https://ror.org/02s7c9e98 Fourth Affiliated Hospital of Harbin Medical University 哈尔滨医科大学第四附属医院'),
(1653, 'https://ror.org/02zpc2253', 'it', 1, 'https://ror.org/02zpc2253 Ospedale Santa Maria della Misericordia di Udine'),
(1654, 'https://ror.org/01v0xk274', 'pt', 1, 'https://ror.org/01v0xk274 Universidade Ibirapuera'),
(1655, 'https://ror.org/01bx8ja67', 'no_lang_code', 1, 'https://ror.org/01bx8ja67 Maharaja Sayajirao University of Baroda મહારાજા સયાજીરાવ વિશ્વવિદ્યાલય மகாராஜா சாயாஜிராவ் பல்கலைக்கழகம்'),
(1656, 'https://ror.org/02r5cmz65', 'en', 1, 'https://ror.org/02r5cmz65 Babol University of Medical Sciences دانشگاه علوم پزشکی بابل'),
(1657, 'https://ror.org/02zc85170', 'en', 1, 'https://ror.org/02zc85170 Babol Noshirvani University of Technology دانشگاه صنعتی نوشیروانی بابل'),
(1658, 'https://ror.org/04nt8b154', 'en', 1, 'https://ror.org/04nt8b154 Fukuoka University 福岡大学'),
(1659, 'https://ror.org/007f1da21', 'en', 1, 'https://ror.org/007f1da21 University of Baghdad جامعة بغداد'),
(1660, 'https://ror.org/05b0gpy83', 'en', 1, 'https://ror.org/05b0gpy83 Center for Forensic Mental Health, Chiba University 千葉大学 社会精神保健研究センター');
INSERT INTO `rors` VALUES
(1661, 'https://ror.org/04cdn2797', 'en', 1, 'https://ror.org/04cdn2797 Banaras Hindu University Université hindoue de bénarès काशी हिन्दू विश् वविद्यालय কাশী হিন্দু বিশ্ববিদ্যালয় બનારસ હિંદુ યુનિવર્સિટી பனாரசு இந்து பல்கலைக்கழகம் బెనారస్ హిందూ విశ్వవిద్యాలయం ಬನಾರಸ್ ಹಿಂದೂ ವಿಶ್ವವಿದ್ಯಾನಿಲಯ ബനാറസ് ഹിന്ദു യൂണിവേഴ്സിറ്റി'),
(1662, 'https://ror.org/0368s4g32', 'en', 1, 'https://ror.org/0368s4g32 China Medical University Hospital'),
(1663, 'https://ror.org/00kde4z41', 'pt', 1, 'https://ror.org/00kde4z41 Lutheran University of Brazil Universidad Luterana de Brasil Universidade Luterana do Brasil'),
(1664, 'https://ror.org/05nx0xs09', 'en', 1, 'https://ror.org/05nx0xs09 Baoji University of Arts and Sciences 宝鸡文理学院'),
(1665, 'https://ror.org/04nqv0v23', 'en', 1, 'https://ror.org/04nqv0v23 Lynn University'),
(1666, 'https://ror.org/01ysgtb61', 'en', 1, 'https://ror.org/01ysgtb61 Baqiyatallah University of Medical Sciences دانشگاه علوم پزشکی بقیةالله'),
(1667, 'https://ror.org/00e49gy82', 'en', 1, 'https://ror.org/00e49gy82 China University of Political Science and Law 中国政法大学'),
(1668, 'https://ror.org/02ax13658', 'no_lang_code', 1, 'https://ror.org/02ax13658 Barkatullah University'),
(1669, 'https://ror.org/04shepe48', 'en', 1, 'https://ror.org/04shepe48 Chinese Culture University 中國文化大學'),
(1670, 'https://ror.org/00wejpz79', 'en', 1, 'https://ror.org/00wejpz79 Hyogo University of Teacher Education 兵庫教育大学'),
(1671, 'https://ror.org/04esb6v42', 'en', 1, 'https://ror.org/04esb6v42 Imam Hossein University دانشگاه امام حسین'),
(1672, 'https://ror.org/02w1g0f30', 'en', 1, 'https://ror.org/02w1g0f30 Bashkir State Medical University Башкирский государственный медицинский университет'),
(1673, 'https://ror.org/04h3ct388', 'en', 1, 'https://ror.org/04h3ct388 Imo State University Teaching Hospital'),
(1674, 'https://ror.org/00mwhaw71', 'en', 1, 'https://ror.org/00mwhaw71 Mae Fah Luang University มหาวิทยาลัยแม่ฟ้าหลวง'),
(1675, 'https://ror.org/00mmq5f59', 'en', 1, 'https://ror.org/00mmq5f59 Mahatma Phule Krishi Vidyapeeth'),
(1676, 'https://ror.org/03m04df46', 'en', 1, 'https://ror.org/03m04df46 University Hospital Magdeburg Universitätsklinikum Magdeburg'),
(1677, 'https://ror.org/003vkcj31', 'en', 1, 'https://ror.org/003vkcj31 University of Teacher Education Fukuoka 福岡教育大学'),
(1678, 'https://ror.org/0313f3w77', 'en', 1, 'https://ror.org/0313f3w77 Başkent University Hospital'),
(1679, 'https://ror.org/00skwgg83', 'en', 1, 'https://ror.org/00skwgg83 Fukuoka Women''s University 福岡女子大学'),
(1680, 'https://ror.org/00pw0pp06', 'en', 1, 'https://ror.org/00pw0pp06 Graz University Hospital Univ. Klinikum Graz'),
(1681, 'https://ror.org/02h2j1586', 'en', 1, 'https://ror.org/02h2j1586 Beijing Anzhen Hospital 北京市心肺血管疾病研究所'),
(1682, 'https://ror.org/05tc07s46', 'en', 1, 'https://ror.org/05tc07s46 Matsuyama University 松山大学'),
(1683, 'https://ror.org/03w0k0x36', 'en', 1, 'https://ror.org/03w0k0x36 Beijing Sport University 北京体育大学'),
(1684, 'https://ror.org/013e0zm98', 'en', 1, 'https://ror.org/013e0zm98 Beijing Technology and Business University 北京工商大学'),
(1685, 'https://ror.org/01jaaym28', 'en', 1, 'https://ror.org/01jaaym28 Shimane University 島根大学'),
(1686, 'https://ror.org/02wkcrp04', 'en', 1, 'https://ror.org/02wkcrp04 Mazandaran University of Medical Sciences دانشگاه علوم پزشکی مازندران'),
(1687, 'https://ror.org/05jd2pj53', 'en', 1, 'https://ror.org/05jd2pj53 King Chulalongkorn Memorial Hospital โรงพยาบาลจุฬาลงกรณ์'),
(1688, 'https://ror.org/031m0eg77', 'en', 1, 'https://ror.org/031m0eg77 Chung Hwa University of Medical Technology 中華醫事科技大學'),
(1689, 'https://ror.org/0589bxs97', 'en', 1, 'https://ror.org/0589bxs97 McGill University and Génome Québec Innovation Centre'),
(1690, 'https://ror.org/051dzw862', 'en', 1, 'https://ror.org/051dzw862 Gentofte Hospital'),
(1691, 'https://ror.org/04cwap208', 'en', 1, 'https://ror.org/04cwap208 Inner Mongolia University for Nationalities'),
(1692, 'https://ror.org/02w8ws377', 'en', 1, 'https://ror.org/02w8ws377 Chung Yuan Christian University'),
(1693, 'https://ror.org/00wmm6v75', 'en', 1, 'https://ror.org/00wmm6v75 American University of Beirut Medical Center'),
(1694, 'https://ror.org/01yzz0f51', 'en', 1, 'https://ror.org/01yzz0f51 Chung Hua University'),
(1695, 'https://ror.org/05jyrng31', 'en', 1, 'https://ror.org/05jyrng31 McMaster University Medical Centre'),
(1696, 'https://ror.org/03tn5ee41', 'en', 1, 'https://ror.org/03tn5ee41 Benha University Université de Banha جامعة بنها'),
(1697, 'https://ror.org/03qqbe534', 'en', 1, 'https://ror.org/03qqbe534 Korea National University of Transportation 한국교통대학교'),
(1698, 'https://ror.org/03ja1ak26', 'en', 1, 'https://ror.org/03ja1ak26 MedStar Georgetown University Hospital'),
(1699, 'https://ror.org/01jmd7f74', 'en', 1, 'https://ror.org/01jmd7f74 Chuvash State University Чувашский государственный университет имени И. Н. Ульянова'),
(1700, 'https://ror.org/05kr7zx86', 'en', 1, 'https://ror.org/05kr7zx86 Georgia College & State University'),
(1701, 'https://ror.org/04sbcrt14', 'en', 1, 'https://ror.org/04sbcrt14 Bhavnagar University'),
(1702, 'https://ror.org/03grgv984', 'en', 1, 'https://ror.org/03grgv984 University Centre of Legal Medicine'),
(1703, 'https://ror.org/0372t5741', 'en', 1, 'https://ror.org/0372t5741 Gifu Pharmaceutical University 岐阜薬科大学'),
(1704, 'https://ror.org/03g4hym73', 'en', 1, 'https://ror.org/03g4hym73 University of Birjand دانشگاه بیرجند'),
(1705, 'https://ror.org/01h2hg078', 'en', 1, 'https://ror.org/01h2hg078 Birjand University of Medical Sciences دانشگاه علوم پزشکی بیرجند'),
(1706, 'https://ror.org/00bjck208', 'en', 1, 'https://ror.org/00bjck208 Glasgow Royal Infirmary'),
(1707, 'https://ror.org/00kays408', 'pt', 1, 'https://ror.org/00kays408 Universidade Gama Filho University Gama Filho'),
(1708, 'https://ror.org/05p1frt18', 'en', 1, 'https://ror.org/05p1frt18 Glostrup Hospital'),
(1709, 'https://ror.org/039zd5s34', 'en', 1, 'https://ror.org/039zd5s34 Integral University Université intégrale de lucknow इंटीग्रल विश्वविद्यालय'),
(1710, 'https://ror.org/01600wh70', 'en', 1, 'https://ror.org/01600wh70 University of Toledo Medical Center'),
(1711, 'https://ror.org/053d3tv41', 'en', 1, 'https://ror.org/053d3tv41 International University of Health and Welfare 国際医療福祉大学'),
(1712, 'https://ror.org/0461cvh40', 'en', 1, 'https://ror.org/0461cvh40 Gangneung–Wonju National University 강릉원주대학교'),
(1713, 'https://ror.org/05ym42410', 'en', 1, 'https://ror.org/05ym42410 Gansu Agricultural University 甘肃农业大学'),
(1714, 'https://ror.org/03fh7t044', 'en', 1, 'https://ror.org/03fh7t044 University of Benghazi جامعة بنغازي'),
(1715, 'https://ror.org/0241b8f19', 'en', 1, 'https://ror.org/0241b8f19 Gomal University جامعہ گومل'),
(1716, 'https://ror.org/00af3sa43', 'en', 1, 'https://ror.org/00af3sa43 Isfahan University of Technology دانشگاه صنعتی اصفهان'),
(1717, 'https://ror.org/03qg42k57', 'no_lang_code', 1, 'https://ror.org/03qg42k57 Ishinomaki Senshu University 石巻専修大学'),
(1718, 'https://ror.org/04j1w0q97', 'en', 1, 'https://ror.org/04j1w0q97 Islamic University ইসলামী বিশ্ববিদ্যালয়'),
(1719, 'https://ror.org/01w6vdf77', 'en', 1, 'https://ror.org/01w6vdf77 Gorgan University of Agricultural Sciences and Natural Resources دانشگاه علوم کشاورزی و منابع طبیعی گرگان'),
(1720, 'https://ror.org/03thzz813', 'en', 1, 'https://ror.org/03thzz813 Meikai University 明海大学'),
(1721, 'https://ror.org/01y4xm534', 'en', 1, 'https://ror.org/01y4xm534 Islamic Azad University, Karaj Karaj Islamic Azad University دانشگاه آزاد اسلامی واحد کرج'),
(1722, 'https://ror.org/023m35461', 'en', 1, 'https://ror.org/023m35461 Istanbul Bilim University İstanbul Bilim Üniversitesi'),
(1723, 'https://ror.org/005wpyn57', 'en', 1, 'https://ror.org/005wpyn57 Children''s Hospital Mansoura University'),
(1724, 'https://ror.org/017q2rt66', 'en', 1, 'https://ror.org/017q2rt66 Mercy University Hospital'),
(1725, 'https://ror.org/04fdkjq44', 'en', 1, 'https://ror.org/04fdkjq44 Methodist University Hospital'),
(1726, 'https://ror.org/056rp9e47', 'en', 1, 'https://ror.org/056rp9e47 Metropolitan State University'),
(1727, 'https://ror.org/04cd75h10', 'en', 1, 'https://ror.org/04cd75h10 Iwate University 岩手大学'),
(1728, 'https://ror.org/05h8pvh61', 'fr', 1, 'https://ror.org/05h8pvh61 Hôpital Broussais'),
(1729, 'https://ror.org/04t6zb108', 'en', 1, 'https://ror.org/04t6zb108 University Hospitals Geneva Medical Center'),
(1730, 'https://ror.org/01xrazc29', 'en', 1, 'https://ror.org/01xrazc29 Jaipur National University'),
(1731, 'https://ror.org/030vg1t69', 'en', 1, 'https://ror.org/030vg1t69 Misr International University جامعة مصر الدولية'),
(1732, 'https://ror.org/01s7jxc19', 'en', 1, 'https://ror.org/01s7jxc19 Miyagi University of Education 宮城教育大学'),
(1733, 'https://ror.org/02vqh3346', 'en', 1, 'https://ror.org/02vqh3346 James Cook University Hospital'),
(1734, 'https://ror.org/00nm7k655', 'en', 1, 'https://ror.org/00nm7k655 James Paget University Hospital'),
(1735, 'https://ror.org/00v81k483', 'en', 1, 'https://ror.org/00v81k483 Mokpo National University 목포대학교'),
(1736, 'https://ror.org/03dwxvb85', 'no_lang_code', 1, 'https://ror.org/03dwxvb85 Jamia Hamdard'),
(1737, 'https://ror.org/01whq8m38', 'en', 1, 'https://ror.org/01whq8m38 Mokwon University 목원대학교'),
(1738, 'https://ror.org/02q3bak66', 'en', 1, 'https://ror.org/02q3bak66 Buckinghamshire New University Prifysgol Newydd Swydd Buckingham'),
(1739, 'https://ror.org/0003ewr82', 'no_lang_code', 1, 'https://ror.org/0003ewr82 Bundelkhand University'),
(1740, 'https://ror.org/04ss1bw11', 'en', 1, 'https://ror.org/04ss1bw11 Tzu Chi University 慈濟大學'),
(1741, 'https://ror.org/04gpcyk21', 'en', 1, 'https://ror.org/04gpcyk21 Japan Women''s University 日本女子大学'),
(1742, 'https://ror.org/04k0yqc48', 'en', 1, 'https://ror.org/04k0yqc48 Buskerud University College'),
(1743, 'https://ror.org/04a5hr295', 'es', 1, 'https://ror.org/04a5hr295 Complejo Hospitalario Universitario de Albacete Hospital General Universitario de Albacete'),
(1744, 'https://ror.org/00fwdyt59', 'en', 1, 'https://ror.org/00fwdyt59 George Washington University Hospital'),
(1745, 'https://ror.org/015v9d997', 'en', 1, 'https://ror.org/015v9d997 Jeonju University 전주대학교'),
(1746, 'https://ror.org/04azbjn80', 'en', 1, 'https://ror.org/04azbjn80 Guangdong University of Technology 广东工业大学'),
(1747, 'https://ror.org/04yj19304', 'en', 1, 'https://ror.org/04yj19304 California Baptist University'),
(1748, 'https://ror.org/01ybfxd46', 'en', 1, 'https://ror.org/01ybfxd46 University Hospital Complex Of Vigo'),
(1749, 'https://ror.org/04dx82x73', 'en', 1, 'https://ror.org/04dx82x73 Nanning Normal University 南宁师范大学'),
(1750, 'https://ror.org/051hvcm98', 'en', 1, 'https://ror.org/051hvcm98 Jiangsu Normal University 江苏师范大学'),
(1751, 'https://ror.org/00dc7s858', 'en', 1, 'https://ror.org/00dc7s858 Jiangxi Agricultural University 江西农业大学'),
(1752, 'https://ror.org/01rx63s97', 'pt', 1, 'https://ror.org/01rx63s97 Guarulhos University'),
(1753, 'https://ror.org/01tqqny90', 'en', 1, 'https://ror.org/01tqqny90 Nagasaki International University 長崎国際大学'),
(1754, 'https://ror.org/01bdr6121', 'en', 1, 'https://ror.org/01bdr6121 University of Guilan دانشگاه گیلان'),
(1755, 'https://ror.org/04ptbrd12', 'en', 1, 'https://ror.org/04ptbrd12 Guilan University of Medical Sciences دانشگاه علوم پزشکی گیلان'),
(1756, 'https://ror.org/05735fh94', 'en', 1, 'https://ror.org/05735fh94 Gujarat Ayurved University गुजरात आयुर्वेद विश्वविद्यालय ગુજરાત આયુર્વેદ યુનિવર્સિટી'),
(1757, 'https://ror.org/02jagkr09', 'en', 1, 'https://ror.org/02jagkr09 Gulbarga University गुलबर्गा विश्वविद्यालय குல்பர்கா பல்கலைக்கழகம் గుల్బర్గా విశ్వవిద్యాలయం ಗುಲ್ಬರ್ಗಾ ವಿಶ್ವವಿದ್ಯಾಲಯ'),
(1758, 'https://ror.org/02adg5v98', 'en', 1, 'https://ror.org/02adg5v98 Nagoya City University Hospital 名古屋市立大学病院'),
(1759, 'https://ror.org/00bx71042', 'en', 1, 'https://ror.org/00bx71042 Coombe Women & Infants University Hospital Ospidéal Ollscoile Ban agus Naíonán an Chúim'),
(1760, 'https://ror.org/049wjac82', 'en', 1, 'https://ror.org/049wjac82 Cooper University Hospital'),
(1761, 'https://ror.org/007evha27', 'en', 1, 'https://ror.org/007evha27 Cooper Medical School of Rowan University'),
(1762, 'https://ror.org/039ygjf22', 'en', 1, 'https://ror.org/039ygjf22 Jikei University School of Medicine 東京慈恵会医科大学'),
(1763, 'https://ror.org/00wys9y90', 'en', 1, 'https://ror.org/00wys9y90 Herlev Hospital'),
(1764, 'https://ror.org/05eer8g02', 'en', 1, 'https://ror.org/05eer8g02 Jimma University'),
(1765, 'https://ror.org/00vpv1x26', 'en', 1, 'https://ror.org/00vpv1x26 Tokyo Medical University Hachioji Medical Center 東京医科大学八王子医療センター'),
(1766, 'https://ror.org/056zv5g90', 'en', 1, 'https://ror.org/056zv5g90 Jinnah University for Women جناح یونیورسٹی برائے خواتین'),
(1767, 'https://ror.org/00a53nq42', 'en', 1, 'https://ror.org/00a53nq42 Cancer Hospital of Shantou University Medical College 汕头大学医学院附属肿瘤医院'),
(1768, 'https://ror.org/0152hn881', 'en', 1, 'https://ror.org/0152hn881 Tianjin Medical University Cancer Institute and Hospital 天津医科大学肿瘤医院'),
(1769, 'https://ror.org/024q5j973', 'en', 1, 'https://ror.org/024q5j973 Hacettepe University Hospital'),
(1770, 'https://ror.org/0470b8t84', 'en', 1, 'https://ror.org/0470b8t84 Capella University'),
(1771, 'https://ror.org/011ygts35', 'en', 1, 'https://ror.org/011ygts35 University Clinic of Traumatology'),
(1772, 'https://ror.org/02aknh966', 'en', 1, 'https://ror.org/02aknh966 Emory University Hospital Midtown'),
(1773, 'https://ror.org/05j4p5w63', 'en', 1, 'https://ror.org/05j4p5w63 MetroHealth Medical Center'),
(1774, 'https://ror.org/05k8pq072', 'pt', 1, 'https://ror.org/05k8pq072 Universidade Cruzeiro do Sul'),
(1775, 'https://ror.org/00nvxt968', 'de', 1, 'https://ror.org/00nvxt968 Universitätsklinikum des Saarlandes'),
(1776, 'https://ror.org/04k093t90', 'en', 1, 'https://ror.org/04k093t90 Chaudhary Sarwan Kumar Himachal Pradesh Krishi Vishvavidyalaya'),
(1777, 'https://ror.org/04pwc8466', 'en', 1, 'https://ror.org/04pwc8466 Johns Hopkins Bayview Medical Center'),
(1778, 'https://ror.org/036wxg427', 'no_lang_code', 1, 'https://ror.org/036wxg427 Jordan Hospital مستشفى الأردن'),
(1779, 'https://ror.org/042vvex07', 'en', 1, 'https://ror.org/042vvex07 Jos University Teaching Hospital'),
(1780, 'https://ror.org/02eqchk86', 'en', 1, 'https://ror.org/02eqchk86 Daejeon University 대전대학교'),
(1781, 'https://ror.org/057vy9683', 'en', 1, 'https://ror.org/057vy9683 Hamamatsu University 浜松大学'),
(1782, 'https://ror.org/04vdpck27', 'en', 1, 'https://ror.org/04vdpck27 Catholic University of the Maule Universidad Católica del Maule'),
(1783, 'https://ror.org/0376myh60', 'pt', 1, 'https://ror.org/0376myh60 Catholic University of Pelotas Universidade Católica de Pelotas'),
(1784, 'https://ror.org/0031nsg68', 'en', 1, 'https://ror.org/0031nsg68 Hankyong National University 한경대학교'),
(1785, 'https://ror.org/05gn84d31', 'es', 1, 'https://ror.org/05gn84d31 Hospital de León'),
(1786, 'https://ror.org/01cwbae71', 'en', 1, 'https://ror.org/01cwbae71 Hannam University 한남대학교'),
(1787, 'https://ror.org/03v4m1x12', 'en', 1, 'https://ror.org/03v4m1x12 Damghan University دانشگاه دامغان'),
(1788, 'https://ror.org/0433abe34', 'en', 1, 'https://ror.org/0433abe34 K.N.Toosi University of Technology دانشگاه صنعتی خواجه نصیرالدین طوسی'),
(1789, 'https://ror.org/02jv06474', 'en', 1, 'https://ror.org/02jv06474 Hanseo University'),
(1790, 'https://ror.org/03ayf0c60', 'en', 1, 'https://ror.org/03ayf0c60 Kagawa Nutrition University 女子栄養大学'),
(1791, 'https://ror.org/00sxe0e68', 'en', 1, 'https://ror.org/00sxe0e68 Harper University Hospital'),
(1792, 'https://ror.org/0535cbe18', 'en', 1, 'https://ror.org/0535cbe18 Kanazawa Medical University 金沢医科大学'),
(1793, 'https://ror.org/0382k6j58', 'en', 1, 'https://ror.org/0382k6j58 Nambu University'),
(1794, 'https://ror.org/00bsyjc58', 'en', 1, 'https://ror.org/00bsyjc58 Kanchi Mamunivar Centre for Post Graduate Studies'),
(1795, 'https://ror.org/0369pvp92', 'no_lang_code', 1, 'https://ror.org/0369pvp92 Nanchang Hangkong University 南昌航空大学'),
(1796, 'https://ror.org/02a6g3h39', 'en', 1, 'https://ror.org/02a6g3h39 Hawler Medical University جامعة هولير الطبية'),
(1797, 'https://ror.org/03xg1f311', 'en', 1, 'https://ror.org/03xg1f311 Kansai University 関西大学'),
(1798, 'https://ror.org/00682eh61', 'en', 1, 'https://ror.org/00682eh61 Detroit Receiving Hospital'),
(1799, 'https://ror.org/041bf1s37', 'no_lang_code', 1, 'https://ror.org/041bf1s37 Kanto Gakuin University 関東学院大学'),
(1800, 'https://ror.org/03gk81f96', 'en', 1, 'https://ror.org/03gk81f96 Kaohsiung Medical University'),
(1801, 'https://ror.org/04tqcn816', 'en', 1, 'https://ror.org/04tqcn816 Health Sciences University of Hokkaido 北海道医療大学'),
(1802, 'https://ror.org/05g1mag11', 'en', 1, 'https://ror.org/05g1mag11 Hebei Normal University of Science and Technology 河北科技师范学院'),
(1803, 'https://ror.org/03e2qe334', 'no_lang_code', 1, 'https://ror.org/03e2qe334 Naresuan University มหาวิทยาลัยนเรศวร'),
(1804, 'https://ror.org/00menq219', 'en', 1, 'https://ror.org/00menq219 Naruto University of Education 鳴門教育大学'),
(1805, 'https://ror.org/03cc0mm23', 'en', 1, 'https://ror.org/03cc0mm23 Nassau University Medical Center'),
(1806, 'https://ror.org/00mjawt10', 'en', 1, 'https://ror.org/00mjawt10 National Sun Yat-sen University'),
(1807, 'https://ror.org/005gkfa10', 'en', 1, 'https://ror.org/005gkfa10 National Changhua University of Education 國立彰化師範大學'),
(1808, 'https://ror.org/04zx3rq17', 'en', 1, 'https://ror.org/04zx3rq17 National Cheng Kung University Hospital'),
(1809, 'https://ror.org/01qww1p93', 'en', 1, 'https://ror.org/01qww1p93 Dominican University'),
(1810, 'https://ror.org/04gknbs13', 'en', 1, 'https://ror.org/04gknbs13 National Chiayi University 國立嘉義大學'),
(1811, 'https://ror.org/059g69b28', 'en', 1, 'https://ror.org/059g69b28 Dong-Eui University 동의대학교'),
(1812, 'https://ror.org/039p7ck60', 'en', 1, 'https://ror.org/039p7ck60 Dongduk Women''s University 동덕여자대학교'),
(1813, 'https://ror.org/05tzr3y75', 'en', 1, 'https://ror.org/05tzr3y75 Kassala University جامعة كسلا'),
(1814, 'https://ror.org/05prep819', 'en', 1, 'https://ror.org/05prep819 National Hsinchu University of Education'),
(1815, 'https://ror.org/01npf0s58', 'en', 1, 'https://ror.org/01npf0s58 National Ilan University 國立宜蘭大學'),
(1816, 'https://ror.org/00wygsf57', 'en', 1, 'https://ror.org/00wygsf57 Dongseo University 동서대학교'),
(1817, 'https://ror.org/008hybe55', 'en', 1, 'https://ror.org/008hybe55 JILA Joint Institute for Laboratory Astrophysics'),
(1818, 'https://ror.org/02yacz525', 'en', 1, 'https://ror.org/02yacz525 Dongzhimen Hospital Affiliated to Beijing University of Chinese Medicine 北京中医药大学东直门医院'),
(1819, 'https://ror.org/01v9g9c07', 'en', 1, 'https://ror.org/01v9g9c07 Mie University Hospital 三重大学病院'),
(1820, 'https://ror.org/01zqccq48', 'en', 1, 'https://ror.org/01zqccq48 Daegu University 대구대학교'),
(1821, 'https://ror.org/03s2gs602', 'en', 1, 'https://ror.org/03s2gs602 Kawasaki University of Medical Welfare 川崎医療福祉大学'),
(1822, 'https://ror.org/02797hn66', 'en', 1, 'https://ror.org/02797hn66 Dr. Ram Manohar Lohia Avadh University डॉ राम मनोहर लोहिया अवध विश्वविद्यालय'),
(1823, 'https://ror.org/059dkdx38', 'en', 1, 'https://ror.org/059dkdx38 National Taiwan Normal University'),
(1824, 'https://ror.org/00tjv0s33', 'en', 1, 'https://ror.org/00tjv0s33 Keimyung University 계명대학교'),
(1825, 'https://ror.org/01zjvhn75', 'en', 1, 'https://ror.org/01zjvhn75 National Taiwan Sport University'),
(1826, 'https://ror.org/03nteze27', 'en', 1, 'https://ror.org/03nteze27 National Taiwan University Hospital'),
(1827, 'https://ror.org/01k8ej563', 'en', 1, 'https://ror.org/01k8ej563 Keio University Hospital 慶應義塾大学病院'),
(1828, 'https://ror.org/006bvjm48', 'en', 1, 'https://ror.org/006bvjm48 Hengyang Normal University'),
(1829, 'https://ror.org/04twccc71', 'en', 1, 'https://ror.org/04twccc71 National United University'),
(1830, 'https://ror.org/04fp9fm22', 'en', 1, 'https://ror.org/04fp9fm22 National University Hospital'),
(1831, 'https://ror.org/013zjb662', 'en', 1, 'https://ror.org/013zjb662 National University of Kaohsiung'),
(1832, 'https://ror.org/0303y7a51', 'en', 1, 'https://ror.org/0303y7a51 Durban University of Technology Inyuvesi yasethekwini yezobuchwepheshe'),
(1833, 'https://ror.org/00mczdx43', 'en', 1, 'https://ror.org/00mczdx43 National University of San Luis Universidad Nacional de San Luis'),
(1834, 'https://ror.org/02xmq6r77', 'en', 1, 'https://ror.org/02xmq6r77 Kibi International University 吉備国際大学'),
(1835, 'https://ror.org/01vv03303', 'en', 1, 'https://ror.org/01vv03303 King Abdul Aziz University Hospital'),
(1836, 'https://ror.org/04qkq2m54', 'en', 1, 'https://ror.org/04qkq2m54 National Yunlin University of Science and Technology'),
(1837, 'https://ror.org/02rrbpf42', 'en', 1, 'https://ror.org/02rrbpf42 King Edward Medical University کنگ ایڈورڈ میڈیکل یونیورسٹی'),
(1838, 'https://ror.org/0230h1q47', 'en', 1, 'https://ror.org/0230h1q47 King Fahd Hospital of the University مستشفى جامعة الملك فيصل'),
(1839, 'https://ror.org/02s5yma07', 'en', 1, 'https://ror.org/02s5yma07 Himachal Pradesh University'),
(1840, 'https://ror.org/011xca688', 'en', 1, 'https://ror.org/011xca688 Himeji Dokkyo University 姫路獨協大学'),
(1841, 'https://ror.org/019z71f50', 'en', 1, 'https://ror.org/019z71f50 National Taipei University of Nursing and Health Science 國立臺北護理健康大學'),
(1842, 'https://ror.org/03grprm46', 'en', 1, 'https://ror.org/03grprm46 Clinical Emergency Hospital Bucharest Spitalul Clinic de Urgenta Bucuresti'),
(1843, 'https://ror.org/00hm9kt34', 'sv', 1, 'https://ror.org/00hm9kt34 Danderyds sjukhus'),
(1844, 'https://ror.org/0059h1f24', 'en', 1, 'https://ror.org/0059h1f24 Prefectural University of Hiroshima 県立広島大学'),
(1845, 'https://ror.org/01xm4tt59', 'en', 1, 'https://ror.org/01xm4tt59 Woodruff Health Sciences Center'),
(1846, 'https://ror.org/05j1gs298', 'en', 1, 'https://ror.org/05j1gs298 Erasmus Hospital Erasmus Ziekenhuis Hôpital Érasme'),
(1847, 'https://ror.org/00zjtek40', 'tr', 1, 'https://ror.org/00zjtek40 Dicle Üniversitesi Hastaneleri'),
(1848, 'https://ror.org/04jqj7p05', 'no_lang_code', 1, 'https://ror.org/04jqj7p05 Hitotsubashi University 一橋大学'),
(1849, 'https://ror.org/00mvp1q86', 'en', 1, 'https://ror.org/00mvp1q86 Hemwati Nandan Bahuguna Garhwal University गढ़वाल विश्वविद्यालय'),
(1850, 'https://ror.org/05dm4ck87', 'en', 1, 'https://ror.org/05dm4ck87 Emory University Hospital'),
(1851, 'https://ror.org/02d1ved90', 'tr', 1, 'https://ror.org/02d1ved90 Dokuz Eylül Üniversitesi Hastanesi'),
(1852, 'https://ror.org/00egdv862', 'no_lang_code', 1, 'https://ror.org/00egdv862 Hongik University 홍익대학교'),
(1853, 'https://ror.org/04fybn584', 'en', 1, 'https://ror.org/04fybn584 Universidad del Cauca University of Cauca'),
(1854, 'https://ror.org/05y33vv83', 'es', 1, 'https://ror.org/05y33vv83 Universidad del Desarrollo'),
(1855, 'https://ror.org/031e6xm45', 'es', 1, 'https://ror.org/031e6xm45 Universidad del Norte'),
(1856, 'https://ror.org/05xv0p989', 'tr', 1, 'https://ror.org/05xv0p989 Ege Üniversitesi Tıp Fakültesi Hastanesi'),
(1857, 'https://ror.org/02h8a1848', 'en', 1, 'https://ror.org/02h8a1848 Ningxia Medical University 宁夏医科大学'),
(1858, 'https://ror.org/00kzych23', 'en', 1, 'https://ror.org/00kzych23 Nippon Sport Science University 日本体育大学'),
(1859, 'https://ror.org/04e1w6923', 'fr', 1, 'https://ror.org/04e1w6923 Hôpital d''Hautepierre'),
(1860, 'https://ror.org/057anza51', 'en', 1, 'https://ror.org/057anza51 Metropolitan University of Educational Sciences Universidad Metropolitana de Ciencias de la Educación'),
(1861, 'https://ror.org/01t5yh786', 'en', 1, 'https://ror.org/01t5yh786 Hôpital Universitaire Des Enfants Reine Fabiola Queen Fabiola Children''s University Hospital'),
(1862, 'https://ror.org/027wyhf03', 'hr', 1, 'https://ror.org/027wyhf03 Klinički Bolnički Centar Rijeka'),
(1863, 'https://ror.org/051s3e988', 'fr', 1, 'https://ror.org/051s3e988 Hôpital Universitaire Dupuytren'),
(1864, 'https://ror.org/03f27y887', 'es', 1, 'https://ror.org/03f27y887 National University of Asuncion Universidad Nacional de Asunción'),
(1865, 'https://ror.org/01kr7aq59', 'en', 1, 'https://ror.org/01kr7aq59 Rivers State University'),
(1866, 'https://ror.org/00eekd641', 'en', 1, 'https://ror.org/00eekd641 Robert Wood Johnson University Hospital'),
(1867, 'https://ror.org/055m2tx54', 'en', 1, 'https://ror.org/055m2tx54 North Eastern Hill University نارتھ ایسٹ ہل یونیورسٹی'),
(1868, 'https://ror.org/02egdz393', 'en', 1, 'https://ror.org/02egdz393 Rocky Mountain University of Health Professions'),
(1869, 'https://ror.org/02zvkba47', 'en', 1, 'https://ror.org/02zvkba47 National University of Comahue Universidad Nacional del Comahue'),
(1870, 'https://ror.org/01qyd4k24', 'en', 1, 'https://ror.org/01qyd4k24 Hoseo University 호서대학교'),
(1871, 'https://ror.org/02ybb5327', 'es', 1, 'https://ror.org/02ybb5327 Universidad Nacional Experimental Francisco de Miranda'),
(1872, 'https://ror.org/00e4zxr41', 'en', 1, 'https://ror.org/00e4zxr41 Ross University School of Veterinary Medicine'),
(1873, 'https://ror.org/02xtpdq88', 'es', 1, 'https://ror.org/02xtpdq88 Hospital Clínico de la Universidad de Chile'),
(1874, 'https://ror.org/016v1bv58', 'es', 1, 'https://ror.org/016v1bv58 Hospital Clínico de la Universidad Católica'),
(1875, 'https://ror.org/02a7yfb86', 'pt', 1, 'https://ror.org/02a7yfb86 Pontifícia Universidade Católica de Goiás Université pontificale catholique de goiás'),
(1876, 'https://ror.org/00vcyhn10', 'pt', 1, 'https://ror.org/00vcyhn10 Catholic University of Santos Universidade Católica de Santos'),
(1877, 'https://ror.org/012gg9483', 'pt', 1, 'https://ror.org/012gg9483 Universidade Cidade de São Paulo'),
(1878, 'https://ror.org/030m18266', 'en', 1, 'https://ror.org/030m18266 Tatung University 大同大學'),
(1879, 'https://ror.org/00wg2b048', 'en', 1, 'https://ror.org/00wg2b048 Royal University Hospital'),
(1880, 'https://ror.org/000ywep40', 'en', 1, 'https://ror.org/000ywep40 NHS Tayside'),
(1881, 'https://ror.org/020jbrt22', 'en', 1, 'https://ror.org/020jbrt22 Tbilisi State Medical University Թբիլիսիի պետական բժշկական համալսարան თბილისის სახელმწიფო სამედიცინო უნივერსიტეტი'),
(1882, 'https://ror.org/04zyja509', 'pt', 1, 'https://ror.org/04zyja509 Universidade de Franca'),
(1883, 'https://ror.org/04hnrs676', 'pt', 1, 'https://ror.org/04hnrs676 Universidade de Mogi das Cruzes University of Mogi das Cruzes'),
(1884, 'https://ror.org/00ey54k21', 'pt', 1, 'https://ror.org/00ey54k21 Universidade de Ribeirão Preto University of Ribeirão Preto'),
(1885, 'https://ror.org/05nvmzs58', 'pt', 1, 'https://ror.org/05nvmzs58 Universidade de Santo Amaro'),
(1886, 'https://ror.org/01gt7sg63', 'pt', 1, 'https://ror.org/01gt7sg63 Universidade de Taubaté University of Taubaté'),
(1887, 'https://ror.org/04t4jzh38', 'en', 1, 'https://ror.org/04t4jzh38 Notre Dame Seishin University ノートルダム清心女子大学'),
(1888, 'https://ror.org/03a6a0a65', 'pt', 1, 'https://ror.org/03a6a0a65 Universidade do Oeste de Santa Catarina'),
(1889, 'https://ror.org/00ccec020', 'pt', 1, 'https://ror.org/00ccec020 Universidade do Oeste Paulista University of Western São Paulo'),
(1890, 'https://ror.org/01thzqc78', 'pt', 1, 'https://ror.org/01thzqc78 Universidade Sagrado Coração'),
(1891, 'https://ror.org/006qssd78', 'pt', 1, 'https://ror.org/006qssd78 Universidade do Sul de Santa Catarina'),
(1892, 'https://ror.org/02vej5573', 'no_lang_code', 1, 'https://ror.org/02vej5573 Estácio (Brazil)'),
(1893, 'https://ror.org/00tze5d69', 'en', 1, 'https://ror.org/00tze5d69 Teikyo University Hospital 帝京大学医学部附属病院'),
(1894, 'https://ror.org/05s74hd65', 'en', 1, 'https://ror.org/05s74hd65 Oakwood University'),
(1895, 'https://ror.org/04rhdtb47', 'en', 1, 'https://ror.org/04rhdtb47 Obstetrics and Gynecology Hospital of Fudan University 复旦大学附属妇产科医院'),
(1896, 'https://ror.org/05weahn72', 'en', 1, 'https://ror.org/05weahn72 Sri Venkateswara University جامعہ سری وینکٹیشورا श्री वेंकटेश्वर विश्वविद्यालय சிறீ வெங்கடேசுவரா பல்கலைக்கழகம் శ్రీ వేంకటేశ్వర విశ్వవిద్యాలయం'),
(1897, 'https://ror.org/02b48z609', 'en', 1, 'https://ror.org/02b48z609 University Cancer Center Hamburg Universitäres Cancer Center Hamburg'),
(1898, 'https://ror.org/03ag59v15', 'pt', 1, 'https://ror.org/03ag59v15 Universidade Estadual de Ciências da Saúde de Alagoas'),
(1899, 'https://ror.org/05y06tg49', 'en', 1, 'https://ror.org/05y06tg49 October 6 University جامعة السادس من أكتوبر'),
(1900, 'https://ror.org/03cxsty68', 'pt', 1, 'https://ror.org/03cxsty68 Universidade Estadual do Centro-Oeste'),
(1901, 'https://ror.org/00c01js51', 'en', 1, 'https://ror.org/00c01js51 The Ohio State University Wexner Medical Center'),
(1902, 'https://ror.org/02rg6ka44', 'en', 1, 'https://ror.org/02rg6ka44 Southwest Bahia State University Universidad Estatal del Sudoeste de Bahía Universidade Estadual do Sudoeste da Bahia'),
(1903, 'https://ror.org/01nyv7k26', 'en', 1, 'https://ror.org/01nyv7k26 Oita University 大分大学'),
(1904, 'https://ror.org/050nkg722', 'en', 1, 'https://ror.org/050nkg722 Oita University Hospital 大分大学医学部附属病院'),
(1905, 'https://ror.org/038bgk418', 'en', 1, 'https://ror.org/038bgk418 Okayama Prefectural University 岡山県立大学'),
(1906, 'https://ror.org/035vb3h42', 'en', 1, 'https://ror.org/035vb3h42 Kinderspital Zürich University Children''s Hospital Zurich'),
(1907, 'https://ror.org/04rj5w171', 'en', 1, 'https://ror.org/04rj5w171 Olabisi Onabanjo University Teaching Hospital'),
(1908, 'https://ror.org/02k9jrs03', 'en', 1, 'https://ror.org/02k9jrs03 University Children’s Hospital Bern Universitätskinderklinik Bern'),
(1909, 'https://ror.org/01apvbh93', 'en', 1, 'https://ror.org/01apvbh93 Akademiska sjukhuset Uppsala University Hospital'),
(1910, 'https://ror.org/05422jd13', 'en', 1, 'https://ror.org/05422jd13 University Children''s Hospital, Belgrade Univerzitetska dečja klinika u Beogradu'),
(1911, 'https://ror.org/043z88g18', 'fr', 1, 'https://ror.org/043z88g18 Hôpital Sahloul'),
(1912, 'https://ror.org/04vxr4k74', 'no_lang_code', 1, 'https://ror.org/04vxr4k74 Sahmyook University 삼육대학교'),
(1913, 'https://ror.org/01v49sd11', 'en', 1, 'https://ror.org/01v49sd11 Saint Louis University Hospital'),
(1914, 'https://ror.org/055mfza47', 'en', 1, 'https://ror.org/055mfza47 Saint Peter''s University Hospital'),
(1915, 'https://ror.org/03tg0z446', 'en', 1, 'https://ror.org/03tg0z446 Odisha University of Agriculture and Technology उडिसा कृषि एवं प्रौद्योगिकी विश्वविद्यालय'),
(1916, 'https://ror.org/028rvnd71', 'en', 1, 'https://ror.org/028rvnd71 Temple University Hospital'),
(1917, 'https://ror.org/03ftky336', 'en', 1, 'https://ror.org/03ftky336 Saitama International Medical Center 埼玉医科大学国際医療センター'),
(1918, 'https://ror.org/053kccs63', 'en', 1, 'https://ror.org/053kccs63 Osaka Dental University 大阪歯科大学'),
(1919, 'https://ror.org/051j8zv27', 'no_lang_code', 1, 'https://ror.org/051j8zv27 Osaka Kyoiku University 大阪教育大学'),
(1920, 'https://ror.org/040jk5g10', 'en', 1, 'https://ror.org/040jk5g10 Samuel Merritt University'),
(1921, 'https://ror.org/00xwgyp12', 'pt', 1, 'https://ror.org/00xwgyp12 Federal Rural University of Rio de Janeiro Universidade Federal Rural do Rio de Janeiro'),
(1922, 'https://ror.org/03vb4dm14', 'en', 1, 'https://ror.org/03vb4dm14 Texas A&M University at Qatar جامعة تكساس أي اند إم'),
(1923, 'https://ror.org/01jtn9895', 'no_lang_code', 1, 'https://ror.org/01jtn9895 Osaka Ohtani University 大阪大谷大学'),
(1924, 'https://ror.org/04ytrbh65', 'en', 1, 'https://ror.org/04ytrbh65 Osaka University of Health and Sport Sciences 大阪体育大学'),
(1925, 'https://ror.org/02d09a271', 'pt', 1, 'https://ror.org/02d09a271 Positive University Universidade Positivo'),
(1926, 'https://ror.org/006nc8n95', 'pt', 1, 'https://ror.org/006nc8n95 Mackenzie Presbyterian University Universidade Presbiteriana Mackenzie'),
(1927, 'https://ror.org/05y26ar20', 'pt', 1, 'https://ror.org/05y26ar20 Universidade Regional do Cariri'),
(1928, 'https://ror.org/03edth057', 'en', 1, 'https://ror.org/03edth057 Teikyo University Chiba Medical Center 帝京大学ちば総合医療センター'),
(1929, 'https://ror.org/0149j8908', 'pt', 1, 'https://ror.org/0149j8908 Universidade Santa Úrsula'),
(1930, 'https://ror.org/045ae7j03', 'pt', 1, 'https://ror.org/045ae7j03 Universidade São Francisco University of San Francisco'),
(1931, 'https://ror.org/02xj89f04', 'pt', 1, 'https://ror.org/02xj89f04 Universidade Veiga de Almeida'),
(1932, 'https://ror.org/03vf51s41', 'hr', 1, 'https://ror.org/03vf51s41 Klinički bolnički centar Osijek'),
(1933, 'https://ror.org/005tw0h26', 'en', 1, 'https://ror.org/005tw0h26 University Clinical Center of Kosovo'),
(1934, 'https://ror.org/01gqe3t73', 'no_lang_code', 1, 'https://ror.org/01gqe3t73 Sangji University 상지대학교'),
(1935, 'https://ror.org/05wcbg446', 'en', 1, 'https://ror.org/05wcbg446 Sveučilišna klinička bolnica Mostar University Clinical Hospital Mostar'),
(1936, 'https://ror.org/02jmkw435', 'en', 1, 'https://ror.org/02jmkw435 Saratov State Medical University Саратовский государственный медицинский университет'),
(1937, 'https://ror.org/00e16h982', 'en', 1, 'https://ror.org/00e16h982 Osun State University'),
(1938, 'https://ror.org/01defpn95', 'en', 1, 'https://ror.org/01defpn95 Sathyabama Institute of Science and Technology சத்யபாமா ப‌ல்கலைக்கழகம் సత్యభామ విశ్వవిద్యాలయం'),
(1939, 'https://ror.org/0250jpt55', 'en', 1, 'https://ror.org/0250jpt55 Saurashtra University'),
(1940, 'https://ror.org/02s7hnh67', 'en', 1, 'https://ror.org/02s7hnh67 Thammasat University Hospital โรงพยาบาลธรรมศาสตร์เฉลิมพระเกียรติ'),
(1941, 'https://ror.org/022yvqh08', 'en', 1, 'https://ror.org/022yvqh08 University College Hospital, Ibadan'),
(1942, 'https://ror.org/05drcjw53', 'en', 1, 'https://ror.org/05drcjw53 Pai Chai University 배재대학교'),
(1943, 'https://ror.org/053gjjp11', 'tr', 1, 'https://ror.org/053gjjp11 Pamukkale Üniversitesi Hastaneleri'),
(1944, 'https://ror.org/05txvbe22', 'en', 1, 'https://ror.org/05txvbe22 Federal Teaching Hospital Abakaliki'),
(1945, 'https://ror.org/019bxes45', 'en', 1, 'https://ror.org/019bxes45 University Dental Hospital of Manchester'),
(1946, 'https://ror.org/01nxv5c88', 'en', 1, 'https://ror.org/01nxv5c88 Second Affiliated Hospital of Nanchang University 南昌大学第二附属医院'),
(1947, 'https://ror.org/00ftwze80', 'en', 1, 'https://ror.org/00ftwze80 University Dental Hospital on Cardiff University'),
(1948, 'https://ror.org/03c3d1v10', 'en', 1, 'https://ror.org/03c3d1v10 General University Hospital of Patras'),
(1949, 'https://ror.org/0527gjc91', 'en', 1, 'https://ror.org/0527gjc91 Temple Street Children''s University Hospital'),
(1950, 'https://ror.org/00r67fz39', 'en', 1, 'https://ror.org/00r67fz39 Second Affiliated Hospital of Chongqing Medical University'),
(1951, 'https://ror.org/031699d98', 'en', 1, 'https://ror.org/031699d98 Payame Noor University دانشگاه پیام نور'),
(1952, 'https://ror.org/03s8txj32', 'en', 1, 'https://ror.org/03s8txj32 Second Affiliated Hospital of Harbin Medical University'),
(1953, 'https://ror.org/059cjpv64', 'en', 1, 'https://ror.org/059cjpv64 Second Affiliated Hospital of Zhejiang University'),
(1954, 'https://ror.org/04wprr919', 'en', 1, 'https://ror.org/04wprr919 Athens Eye Hospital Οφθαλμολογικό Νοσοκομείο Αθηνών'),
(1955, 'https://ror.org/04j9bvy88', 'en', 1, 'https://ror.org/04j9bvy88 BG University Hospital Bergmannsheil Bochum BG Universitätsklinikum Bergmannsheil Bochum'),
(1956, 'https://ror.org/01xkmcr24', 'de', 1, 'https://ror.org/01xkmcr24 Universitäts-Augenklinik Bonn'),
(1957, 'https://ror.org/027evcf19', 'tr', 1, 'https://ror.org/027evcf19 Özel Ortadoğu 19 Mayıs Hastanesi'),
(1958, 'https://ror.org/00nyxxr91', 'en', 1, 'https://ror.org/00nyxxr91 Peking University Cancer Hospital 北京大学肿瘤医院'),
(1959, 'https://ror.org/029gksw03', 'en', 1, 'https://ror.org/029gksw03 Semnan University دانشگاه سمنان'),
(1960, 'https://ror.org/04x0k0m51', 'en', 1, 'https://ror.org/04x0k0m51 Seokyeong University 서경대학교'),
(1961, 'https://ror.org/01adsjd47', 'no_lang_code', 1, 'https://ror.org/01adsjd47 Seonam University'),
(1962, 'https://ror.org/0312m2266', 'en', 1, 'https://ror.org/0312m2266 University Hospital of Heraklion'),
(1963, 'https://ror.org/04zkctn64', 'en', 1, 'https://ror.org/04zkctn64 University Hospital of Alexandroupolis'),
(1964, 'https://ror.org/00chfja07', 'en', 1, 'https://ror.org/00chfja07 Seoul National University of Science and Technology 서울과학기술대학교'),
(1965, 'https://ror.org/001v19997', 'tr', 1, 'https://ror.org/001v19997 Eskişehir Osmangazi Üniversitesi Tıp Fakültesi Hastanesi'),
(1966, 'https://ror.org/04b2fhx54', 'en', 1, 'https://ror.org/04b2fhx54 Seoul Women''s University 서울여자대학교'),
(1967, 'https://ror.org/01d9cs377', 'en', 1, 'https://ror.org/01d9cs377 University Health System'),
(1968, 'https://ror.org/05crs8s98', 'en', 1, 'https://ror.org/05crs8s98 Periyar University பெரியார் பல்கலைக்கழகம்'),
(1969, 'https://ror.org/044p01n12', 'en', 1, 'https://ror.org/044p01n12 Vidant Health'),
(1970, 'https://ror.org/0418a3v02', 'en', 1, 'https://ror.org/0418a3v02 Setsunan University 摂南大学'),
(1971, 'https://ror.org/053mxw461', 'en', 1, 'https://ror.org/053mxw461 Sevastopol National Technical University Севастопольский национальный технический университет Севастопольський національний технічний університет'),
(1972, 'https://ror.org/04zn42r77', 'en', 1, 'https://ror.org/04zn42r77 Shahid Bahonar University of Kerman دانشگاه شهید باهنر کرمان'),
(1973, 'https://ror.org/05hm0vv72', 'en', 1, 'https://ror.org/05hm0vv72 Shahjalal University of Science and Technology শাহজালাল বিজ্ঞান ও প্রযুক্তি বিশ্ববিদ্যালয়'),
(1974, 'https://ror.org/03tf96d34', 'it', 1, 'https://ror.org/03tf96d34 Azienda Ospedaliera Universitaria Policlinico "G. Martino"'),
(1975, 'https://ror.org/05p21z194', 'it', 1, 'https://ror.org/05p21z194 Azienda Ospedaliera Universitaria Policlinico "Paolo Giaccone" di Palermo'),
(1976, 'https://ror.org/03n0nnh89', 'ms', 1, 'https://ror.org/03n0nnh89 Hospital Kuala Lumpur'),
(1977, 'https://ror.org/026e9yy16', 'en', 1, 'https://ror.org/026e9yy16 Affiliated Hospital of Qingdao University'),
(1978, 'https://ror.org/02x1vjk79', 'pt', 1, 'https://ror.org/02x1vjk79 Pontifical Catholic University of Paraná Pontificia Universidad Católica de Paraná Pontifícia Universidade Católica do Paraná Université pontificale catholique du paraná'),
(1979, 'https://ror.org/010826a91', 'en', 1, 'https://ror.org/010826a91 Shanghai Ninth People''s Hospital 上海第九人民医院'),
(1980, 'https://ror.org/049zrh188', 'en', 1, 'https://ror.org/049zrh188 Shanghai Sixth People''s Hospital 上海市第六人民医院'),
(1981, 'https://ror.org/00b7yvh50', 'en', 1, 'https://ror.org/00b7yvh50 Prefectural University of Kumamoto 熊本県立大学'),
(1982, 'https://ror.org/00a98yf63', 'en', 1, 'https://ror.org/00a98yf63 Second Affiliated Hospital of Guangzhou Medical University 广州医科大学附属第二医院'),
(1983, 'https://ror.org/01px77p81', 'en', 1, 'https://ror.org/01px77p81 Sun Yat-sen Memorial Hospital'),
(1984, 'https://ror.org/03vjkf643', 'en', 1, 'https://ror.org/03vjkf643 Shanghai Tenth People''s Hospital 上海第十人民医院'),
(1985, 'https://ror.org/02zg69r60', 'en', 1, 'https://ror.org/02zg69r60 Vancouver General Hospital'),
(1986, 'https://ror.org/03d8mqt26', 'en', 1, 'https://ror.org/03d8mqt26 Princess Royal University Hospital'),
(1987, 'https://ror.org/0286g6711', 'en', 1, 'https://ror.org/0286g6711 Shaoguan University 韶关学院'),
(1988, 'https://ror.org/03fcpsq87', 'en', 1, 'https://ror.org/03fcpsq87 Providence University 靜宜大學'),
(1989, 'https://ror.org/024c2fq17', 'en', 1, 'https://ror.org/024c2fq17 Sharif University of Technology دانشگاه صنعتی شریف'),
(1990, 'https://ror.org/05w0p9h92', 'en', 1, 'https://ror.org/05w0p9h92 Shenandoah University'),
(1991, 'https://ror.org/04tm3k558', 'en', 1, 'https://ror.org/04tm3k558 Third Affiliated Hospital of Sun Yat-sen University'),
(1992, 'https://ror.org/01c3hyk82', 'en', 1, 'https://ror.org/01c3hyk82 Shih Chien University'),
(1993, 'https://ror.org/03nvpm562', 'en', 1, 'https://ror.org/03nvpm562 Shimane University Hospital 島根大学病院'),
(1994, 'https://ror.org/025821s54', 'en', 1, 'https://ror.org/025821s54 University Hospital Coventry'),
(1995, 'https://ror.org/0433kqc49', 'en', 1, 'https://ror.org/0433kqc49 Pukyong National University 부경대학교'),
(1996, 'https://ror.org/00xdn8y92', 'en', 1, 'https://ror.org/00xdn8y92 Punjabi University पंजाबी विश्वविद्यालय ਪੰਜਾਬੀ ਯੂਨੀਵਰਸਿਟੀ'),
(1997, 'https://ror.org/03sf6p593', 'en', 1, 'https://ror.org/03sf6p593 Showa Women''s University 昭和女子大学'),
(1998, 'https://ror.org/03n35e656', 'no_lang_code', 1, 'https://ror.org/03n35e656 Shuguang Hospital'),
(1999, 'https://ror.org/00wn7d965', 'en', 1, 'https://ror.org/00wn7d965 University of Virginia Health System'),
(2000, 'https://ror.org/030sc3x20', 'en', 1, 'https://ror.org/030sc3x20 First Affiliated Hospital of GuangXi Medical University'),
(2001, 'https://ror.org/01mxpdw03', 'en', 1, 'https://ror.org/01mxpdw03 First Affiliated Hospital of Guangzhou University of Chinese Medicine'),
(2002, 'https://ror.org/05vy2sc54', 'en', 1, 'https://ror.org/05vy2sc54 First Affiliated Hospital of Harbin Medical University'),
(2003, 'https://ror.org/046kb4y45', 'en', 1, 'https://ror.org/046kb4y45 University of Virginia Medical Center'),
(2004, 'https://ror.org/05d5vvz89', 'en', 1, 'https://ror.org/05d5vvz89 First Affiliated Hospital of Jinan University 暨南大学附属第一医院'),
(2005, 'https://ror.org/00yhnba62', 'en', 1, 'https://ror.org/00yhnba62 Qatar University Universidad de Catar جامعة قطر'),
(2006, 'https://ror.org/05gbwr869', 'en', 1, 'https://ror.org/05gbwr869 First Affiliated Hospital of Nanchang University 南昌大学第一附属医院'),
(2007, 'https://ror.org/053fzma23', 'en', 1, 'https://ror.org/053fzma23 Sichuan University of Science and Engineering 四川理工学院'),
(2008, 'https://ror.org/04sexa105', 'en', 1, 'https://ror.org/04sexa105 Qazvin University of Medical Sciences دانشگاه علوم پزشكي و خدمات درماني قزوین'),
(2009, 'https://ror.org/056ep7w45', 'en', 1, 'https://ror.org/056ep7w45 Siksha O Anusandhan University'),
(2010, 'https://ror.org/01kzgyz42', 'en', 1, 'https://ror.org/01kzgyz42 Qiqihar Medical University 齐齐哈尔医学院'),
(2011, 'https://ror.org/02bnz8785', 'en', 1, 'https://ror.org/02bnz8785 First Affiliated Hospital of Shantou University Medical College 汕头大学医学院第一附属医院'),
(2012, 'https://ror.org/02w3gk008', 'en', 1, 'https://ror.org/02w3gk008 Silla University 신라대학교'),
(2013, 'https://ror.org/059jq5127', 'en', 1, 'https://ror.org/059jq5127 Harborview Medical Center'),
(2014, 'https://ror.org/02d0tyt78', 'en', 1, 'https://ror.org/02d0tyt78 Silpakorn University มหาวิทยาลัยศิลปากร'),
(2015, 'https://ror.org/04s9hft57', 'en', 1, 'https://ror.org/04s9hft57 Quaid-i-Azam University جامعہ قائداعظم'),
(2016, 'https://ror.org/03j42gp22', 'en', 1, 'https://ror.org/03j42gp22 University HealthSystem Consortium'),
(2017, 'https://ror.org/00wbzw723', 'en', 1, 'https://ror.org/00wbzw723 University of Washington Medical Center'),
(2018, 'https://ror.org/0006swh35', 'en', 1, 'https://ror.org/0006swh35 First Affiliated Hospital of Xiamen University 厦门大学附属第一医院'),
(2019, 'https://ror.org/04748z305', 'en', 1, 'https://ror.org/04748z305 Taurida National V.I. Vernadsky University Tawrijski Uniwersytet Narodowy im. Władimira Wiernadskiego Таврический национальный университет имени В. И. Вернадского Таврійський національний університет імені В. І. Вернадського'),
(2020, 'https://ror.org/02qx1ae98', 'en', 1, 'https://ror.org/02qx1ae98 First Affiliated Hospital of Xinjiang Medical University 新疆医科大学第一附属医院'),
(2021, 'https://ror.org/02fsmcz03', 'en', 1, 'https://ror.org/02fsmcz03 First Teaching Hospital of Tianjin University of Traditional Chinese Medicine 中国传统医药的天津大学第一附属医院'),
(2022, 'https://ror.org/032kth403', 'en', 1, 'https://ror.org/032kth403 Rani Durgavati University'),
(2023, 'https://ror.org/02m0p4y77', 'de', 1, 'https://ror.org/02m0p4y77 Klinikum Südstadt Rostock'),
(2024, 'https://ror.org/05d2xpa49', 'en', 1, 'https://ror.org/05d2xpa49 First Hospital of Lanzhou University 兰州大学第一医院: 欢迎您| 兰大一院'),
(2025, 'https://ror.org/003sav965', 'en', 1, 'https://ror.org/003sav965 Tianjin Medical University General Hospital 天津医科大学总医院'),
(2026, 'https://ror.org/000tqtb97', 'no_lang_code', 1, 'https://ror.org/000tqtb97 Rafik Hariri University Hospital مستشفى رفيق الحريري الجامعي‎‎'),
(2027, 'https://ror.org/00d973h41', 'en', 1, 'https://ror.org/00d973h41 Södertörn University Södertörns högskola'),
(2028, 'https://ror.org/00mrw8k38', 'en', 1, 'https://ror.org/00mrw8k38 Ramkhamhaeng University มหาวิทยาลัยรามคำแหง'),
(2029, 'https://ror.org/014fz7968', 'en', 1, 'https://ror.org/014fz7968 Sojo University 崇城大学'),
(2030, 'https://ror.org/01cqcrc47', 'en', 1, 'https://ror.org/01cqcrc47 Rangsit University มหาวิทยาลัยรังสิต'),
(2031, 'https://ror.org/026tktq31', 'en', 1, 'https://ror.org/026tktq31 Solapur University सोलापूर विद्यापीठ'),
(2032, 'https://ror.org/03f3jde70', 'en', 1, 'https://ror.org/03f3jde70 Jaamacada Ummada Soomaaliyeed Somali National University Università nazionale somala'),
(2033, 'https://ror.org/02ynb0474', 'en', 1, 'https://ror.org/02ynb0474 Razi University دانشگاه رازی'),
(2034, 'https://ror.org/00vvvt117', 'en', 1, 'https://ror.org/00vvvt117 Sookmyung Women''s University 숙명여자대학교'),
(2035, 'https://ror.org/00jhyq802', 'en', 1, 'https://ror.org/00jhyq802 Regent University'),
(2036, 'https://ror.org/01w8whh21', 'en', 1, 'https://ror.org/01w8whh21 University of Oklahoma Medical Center'),
(2037, 'https://ror.org/04py1g812', 'en', 1, 'https://ror.org/04py1g812 Jiangsu Province Hospital 江苏省人民医院'),
(2038, 'https://ror.org/03t1yn780', 'en', 1, 'https://ror.org/03t1yn780 First Affiliated Hospital of Anhui Medical University'),
(2039, 'https://ror.org/030e09f60', 'en', 1, 'https://ror.org/030e09f60 First Affiliated Hospital of Fujian Medical University 福建医科大学附属第一医院'),
(2040, 'https://ror.org/003sphj24', 'en', 1, 'https://ror.org/003sphj24 Soroka Medical Center'),
(2041, 'https://ror.org/05wyq9e07', 'en', 1, 'https://ror.org/05wyq9e07 Stony Brook University Hospital'),
(2042, 'https://ror.org/05vgmh969', 'pl', 1, 'https://ror.org/05vgmh969 Szpital Uniwersytecki w Krakowie'),
(2043, 'https://ror.org/014gqa478', 'en', 1, 'https://ror.org/014gqa478 University Health Care System'),
(2044, 'https://ror.org/01v95tx09', 'en', 1, 'https://ror.org/01v95tx09 Shriners Hospitals for Children - Galveston');
INSERT INTO `rors` VALUES
(2045, 'https://ror.org/01j0n2h15', 'en', 1, 'https://ror.org/01j0n2h15 Universidad de Phoenix University of Phoenix Université de phoenix'),
(2046, 'https://ror.org/054nax084', 'en', 1, 'https://ror.org/054nax084 Clinical Centre of Kragujevac Клинички центар Крагујевац'),
(2047, 'https://ror.org/00p2x3741', 'en', 1, 'https://ror.org/00p2x3741 Southend Hospital'),
(2048, 'https://ror.org/00swv7d52', 'en', 1, 'https://ror.org/00swv7d52 Penn Presbyterian Medical Center'),
(2049, 'https://ror.org/019zp2770', 'en', 1, 'https://ror.org/019zp2770 Upstate University Hospital'),
(2050, 'https://ror.org/0029n1t76', 'en', 1, 'https://ror.org/0029n1t76 Southern Taiwan University of Science and Technology'),
(2051, 'https://ror.org/039nw9e11', 'en', 1, 'https://ror.org/039nw9e11 Third Affiliated Hospital of Zhengzhou University 郑州大学第三附属医院'),
(2052, 'https://ror.org/026492508', 'en', 1, 'https://ror.org/026492508 Spalding University'),
(2053, 'https://ror.org/04zhhva53', 'en', 1, 'https://ror.org/04zhhva53 Thomas Jefferson University Hospital'),
(2054, 'https://ror.org/04j2cfe69', 'en', 1, 'https://ror.org/04j2cfe69 Tianjin Medical University Eye Hospital'),
(2055, 'https://ror.org/02fyxjb45', 'en', 1, 'https://ror.org/02fyxjb45 Sri Krishnadevaraya University శ్రీ కృష్ణదేవరాయ విశ్వవిద్యాలయము'),
(2056, 'https://ror.org/02wtdvm35', 'en', 1, 'https://ror.org/02wtdvm35 Saskatchewan Health Authority'),
(2057, 'https://ror.org/0108gdg43', 'en', 1, 'https://ror.org/0108gdg43 Sri Ramachandra Institute of Higher Education and Research श्री रामचंद्र मेडिकल कालिज एवं अनुसंधान संस्थान சிறீ இராமச்சந்திரா மருத்துவக் கல்லூரி மற்றும் ஆய்வுக் கழகம்'),
(2058, 'https://ror.org/01qv3ba61', 'en', 1, 'https://ror.org/01qv3ba61 University of Port Harcourt Teaching Hospital'),
(2059, 'https://ror.org/04718hx42', 'no_lang_code', 1, 'https://ror.org/04718hx42 Srinakharinwirot University มหาวิทยาลัยศรีนครินทรวิโรฒ'),
(2060, 'https://ror.org/050113w36', 'en', 1, 'https://ror.org/050113w36 SRM Institute of Science and Technology திரு. இராமசாமி நினைவுப் பல்கலைக்கழகம்'),
(2061, 'https://ror.org/029tkqm80', 'en', 1, 'https://ror.org/029tkqm80 St. Vincent''s University Hospital'),
(2062, 'https://ror.org/01qr5a671', 'en', 1, 'https://ror.org/01qr5a671 Tohoku Fukushi University 東北福祉大学'),
(2063, 'https://ror.org/00gr1q288', 'en', 1, 'https://ror.org/00gr1q288 Tokai University Hachioji Hospital 東海大学医学部付属八王子病院'),
(2064, 'https://ror.org/032fk0x53', 'en', 1, 'https://ror.org/032fk0x53 Urmia University دانشگاه ارومیه'),
(2065, 'https://ror.org/027x3m696', 'en', 1, 'https://ror.org/027x3m696 Mother Teresa Hospital Qendra Spitalore Universitare Nene Tereza'),
(2066, 'https://ror.org/00smwky98', 'no_lang_code', 1, 'https://ror.org/00smwky98 Tokushima Bunri University 徳島文理大学'),
(2067, 'https://ror.org/00khh5r84', 'en', 1, 'https://ror.org/00khh5r84 Tokyo Gakugei University 東京学芸大学'),
(2068, 'https://ror.org/0292hc709', 'en', 1, 'https://ror.org/0292hc709 University of Santo Tomas Hospital'),
(2069, 'https://ror.org/0086rpr26', 'en', 1, 'https://ror.org/0086rpr26 University of Sargodha'),
(2070, 'https://ror.org/031hmx230', 'en', 1, 'https://ror.org/031hmx230 Tokyo Medical University Ibaraki Medical Center 東京医科大学茨城医療センター'),
(2071, 'https://ror.org/000qzf213', 'en', 1, 'https://ror.org/000qzf213 Korea University of Science and Technology 과학기술연합대학원대학교'),
(2072, 'https://ror.org/00s7qjp35', 'pt', 1, 'https://ror.org/00s7qjp35 Universidade Vale do Rio Verde'),
(2073, 'https://ror.org/0059hys23', 'fr', 1, 'https://ror.org/0059hys23 Hôpital Farhat Hached'),
(2074, 'https://ror.org/01d692d57', 'en', 1, 'https://ror.org/01d692d57 University of Sindh سندھ یونیورسٹی'),
(2075, 'https://ror.org/03xgh2v50', 'en', 1, 'https://ror.org/03xgh2v50 Toyama Prefectural University 富山県立大学'),
(2076, 'https://ror.org/04ezg6d83', 'en', 1, 'https://ror.org/04ezg6d83 Toyohashi University of Technology 豊橋技術科学大学'),
(2077, 'https://ror.org/05388sw24', 'en', 1, 'https://ror.org/05388sw24 University of South Alabama Medical Center'),
(2078, 'https://ror.org/0125csy75', 'de', 1, 'https://ror.org/0125csy75 Klinikum Region Hannover'),
(2079, 'https://ror.org/03m2nqg26', 'fr', 1, 'https://ror.org/03m2nqg26 Centre Hospitalier Universitaire Hassan II'),
(2080, 'https://ror.org/00zcy2665', 'en', 1, 'https://ror.org/00zcy2665 Vestfold University College'),
(2081, 'https://ror.org/031w3f751', 'en', 1, 'https://ror.org/031w3f751 Tulane Medical Center'),
(2082, 'https://ror.org/045nemn19', 'en', 1, 'https://ror.org/045nemn19 Ubon Ratchathani University มหาวิทยาลัยอุบลราชธานี'),
(2083, 'https://ror.org/01papkj44', 'en', 1, 'https://ror.org/01papkj44 University of Tabriz دانشگاه تبریز'),
(2084, 'https://ror.org/01xjqrm90', 'en', 1, 'https://ror.org/01xjqrm90 Umm al-Qura University جامعة أم القرى'),
(2085, 'https://ror.org/04hjn8p44', 'en', 1, 'https://ror.org/04hjn8p44 Staten Island University Hospital'),
(2086, 'https://ror.org/002k8gm39', 'en', 1, 'https://ror.org/002k8gm39 Vikram University विक्रम विश्वविद्यालय'),
(2087, 'https://ror.org/01q1y4t48', 'en', 1, 'https://ror.org/01q1y4t48 Virginia Tech - Wake Forest University School of Biomedical Engineering & Sciences'),
(2088, 'https://ror.org/00bb01z14', 'en', 1, 'https://ror.org/00bb01z14 Vladivostok State Medical University Тихоокеанский государственный медицинский университет'),
(2089, 'https://ror.org/027nene90', 'no_lang_code', 1, 'https://ror.org/027nene90 Sugiyama Jogakuen University 椙山女学園大学'),
(2090, 'https://ror.org/033xwx807', 'it', 1, 'https://ror.org/033xwx807 Policlinico Universitario di Catania'),
(2091, 'https://ror.org/02z9t1k38', 'es', 1, 'https://ror.org/02z9t1k38 Universidad Anáhuac'),
(2092, 'https://ror.org/04043k259', 'en', 1, 'https://ror.org/04043k259 Austral University Universidad Austral'),
(2093, 'https://ror.org/01v5y3463', 'en', 1, 'https://ror.org/01v5y3463 Autonomous University of Campeche Universidad Autónoma de Campeche'),
(2094, 'https://ror.org/049xx5c95', 'en', 1, 'https://ror.org/049xx5c95 Sultan Qaboos University Hospital مستشفى جامعة السلطان قابوس'),
(2095, 'https://ror.org/005qv5373', 'en', 1, 'https://ror.org/005qv5373 Wakayama Medical University 和歌山県立医科大学'),
(2096, 'https://ror.org/009e5cd49', 'en', 1, 'https://ror.org/009e5cd49 Sun Moon University 선문대학교'),
(2097, 'https://ror.org/00v8fdc16', 'en', 1, 'https://ror.org/00v8fdc16 Autonomous University of Queretaro Universidad Autónoma de Querétaro'),
(2098, 'https://ror.org/000917t60', 'en', 1, 'https://ror.org/000917t60 Autonomous University of San Luis Potosí Universidad Autónoma de San Luis Potosí'),
(2099, 'https://ror.org/031f8kt38', 'es', 1, 'https://ror.org/031f8kt38 Autonomous University of Hidalgo State Universidad Autónoma del Estado de Hidalgo'),
(2100, 'https://ror.org/02qp2hh41', 'en', 1, 'https://ror.org/02qp2hh41 Walden University'),
(2101, 'https://ror.org/003ammk23', 'en', 1, 'https://ror.org/003ammk23 Walsh University'),
(2102, 'https://ror.org/043jqrs76', 'en', 1, 'https://ror.org/043jqrs76 Sunchon National University 순천대학교'),
(2103, 'https://ror.org/03qgg3111', 'es', 1, 'https://ror.org/03qgg3111 Universidad Centroccidental Lisandro Alvarado'),
(2104, 'https://ror.org/00tq7xg10', 'en', 1, 'https://ror.org/00tq7xg10 Suzuka University of Medical Science 鈴鹿医療科学大学'),
(2105, 'https://ror.org/05sj7yp62', 'en', 1, 'https://ror.org/05sj7yp62 Universidad de Carabobo University of Carabobo'),
(2106, 'https://ror.org/0409zd934', 'en', 1, 'https://ror.org/0409zd934 Universidad de Cartagena University of Cartagena'),
(2107, 'https://ror.org/05p4f7w60', 'en', 1, 'https://ror.org/05p4f7w60 University of the West Indies'),
(2108, 'https://ror.org/01xv1nn60', 'en', 1, 'https://ror.org/01xv1nn60 Taibah University جامعة طيبة'),
(2109, 'https://ror.org/01rb2st83', 'sk', 1, 'https://ror.org/01rb2st83 Univerzitná Nemocnica Louisa Pasteura'),
(2110, 'https://ror.org/05031qk94', 'en', 1, 'https://ror.org/05031qk94 Taipei Medical University'),
(2111, 'https://ror.org/03ka27b61', 'en', 1, 'https://ror.org/03ka27b61 West Bengal University of Animal and Fishery Sciences पश्चिम बंगाल मत्स्य एवं पशुपालन विज्ञान विश्वविद्यालय পশ্চিমবঙ্গ প্রাণী ও মৎস্যবিজ্ঞান বিশ্ববিদ্যালয়'),
(2112, 'https://ror.org/01fvf0d84', 'en', 1, 'https://ror.org/01fvf0d84 Tajen University'),
(2113, 'https://ror.org/00n3e1d98', 'en', 1, 'https://ror.org/00n3e1d98 Takasaki University of Health and Welfare 高崎健康福祉大学'),
(2114, 'https://ror.org/04waphv22', 'en', 1, 'https://ror.org/04waphv22 Tamil Nadu Veterinary and Animal Sciences University தமிழ்நாடு கால்நடை மருத்துவ அறிவியல் பல்கலைக்கழகம்'),
(2115, 'https://ror.org/0534dba08', 'en', 1, 'https://ror.org/0534dba08 Tamil University தமிழ்ப் பல்கலைக்கழகம், தஞ்சாவூர் തമിഴ് സർവകലാശാല'),
(2116, 'https://ror.org/058rxv392', 'en', 1, 'https://ror.org/058rxv392 University Hospital of North Tees'),
(2117, 'https://ror.org/04npk0q16', 'en', 1, 'https://ror.org/04npk0q16 Animal Health Trust'),
(2118, 'https://ror.org/00yx91b22', 'en', 1, 'https://ror.org/00yx91b22 Barnsley Hospital NHS Foundation Trust'),
(2119, 'https://ror.org/031nbgr73', 'en', 1, 'https://ror.org/031nbgr73 Bedford Hospital NHS Trust'),
(2120, 'https://ror.org/02405mj67', 'en', 1, 'https://ror.org/02405mj67 Belfast City Hospital'),
(2121, 'https://ror.org/02tdmfk69', 'en', 1, 'https://ror.org/02tdmfk69 Belfast Health and Social Care Trust'),
(2122, 'https://ror.org/02smq5q54', 'en', 1, 'https://ror.org/02smq5q54 Birmingham City Hospital'),
(2123, 'https://ror.org/0022b3c04', 'en', 1, 'https://ror.org/0022b3c04 Nottingham City Hospital'),
(2124, 'https://ror.org/0380w8h49', 'en', 1, 'https://ror.org/0380w8h49 Ealing Hospital NHS Trust'),
(2125, 'https://ror.org/02y0es528', 'en', 1, 'https://ror.org/02y0es528 George Eliot Hospital NHS Trust'),
(2126, 'https://ror.org/048a96r61', 'en', 1, 'https://ror.org/048a96r61 Glenfield Hospital'),
(2127, 'https://ror.org/048f17730', 'en', 1, 'https://ror.org/048f17730 Health Research and Educational Trust'),
(2128, 'https://ror.org/05xh7ac43', 'en', 1, 'https://ror.org/05xh7ac43 Kettering General Hospital NHS Trust'),
(2129, 'https://ror.org/058xqe166', 'en', 1, 'https://ror.org/058xqe166 Kingston Hospital NHS Trust'),
(2130, 'https://ror.org/02zg49d29', 'en', 1, 'https://ror.org/02zg49d29 Leicester General Hospital'),
(2131, 'https://ror.org/05b81av32', 'en', 1, 'https://ror.org/05b81av32 Luton and Dunstable Hospital'),
(2132, 'https://ror.org/058q6m856', 'en', 1, 'https://ror.org/058q6m856 Medical Trust Hospital'),
(2133, 'https://ror.org/05r409z22', 'en', 1, 'https://ror.org/05r409z22 Northern General Hospital'),
(2134, 'https://ror.org/01qbebb31', 'en', 1, 'https://ror.org/01qbebb31 Papworth Hospital NHS Foundation Trust'),
(2135, 'https://ror.org/03bs2yy11', 'en', 1, 'https://ror.org/03bs2yy11 Queen Victoria Hospital NHS Foundation Trust'),
(2136, 'https://ror.org/05apdps44', 'en', 1, 'https://ror.org/05apdps44 Raigmore Hospital'),
(2137, 'https://ror.org/049zedh07', 'en', 1, 'https://ror.org/049zedh07 Robert Jones and Agnes Hunt Orthopaedic Hospital NHS Trust'),
(2138, 'https://ror.org/026xdcm93', 'en', 1, 'https://ror.org/026xdcm93 Royal Cornwall Hospital Trust'),
(2139, 'https://ror.org/03dx46b94', 'en', 1, 'https://ror.org/03dx46b94 Royal National Orthopaedic Hospital NHS Trust'),
(2140, 'https://ror.org/050bd8661', 'en', 1, 'https://ror.org/050bd8661 Royal Surrey NHS Foundation Trust'),
(2141, 'https://ror.org/02e22bh87', 'en', 1, 'https://ror.org/02e22bh87 Western Infirmary'),
(2142, 'https://ror.org/04fbnx371', 'en', 1, 'https://ror.org/04fbnx371 West Virginia University Hospitals'),
(2143, 'https://ror.org/05hzgxd58', 'pt', 1, 'https://ror.org/05hzgxd58 Universidade de Uberaba'),
(2144, 'https://ror.org/02azxx136', 'en', 1, 'https://ror.org/02azxx136 University of Health Sciences Vientiane ມະຫາວິທະຍາໄລ ວິທະຍາສາດ ສຸຂະພາບ'),
(2145, 'https://ror.org/01yyxv878', 'en', 1, 'https://ror.org/01yyxv878 Wingate University'),
(2146, 'https://ror.org/05rzmnp25', 'en', 1, 'https://ror.org/05rzmnp25 University of the Ryukyus University Hospital 琉球大学医学部附属病院'),
(2147, 'https://ror.org/03fr85h91', 'en', 1, 'https://ror.org/03fr85h91 University of Uyo Teaching Hospital'),
(2148, 'https://ror.org/04s8a8w57', 'en', 1, 'https://ror.org/04s8a8w57 University Hospital of the West Indies'),
(2149, 'https://ror.org/015qjqf64', 'en', 1, 'https://ror.org/015qjqf64 Stiftung Tierärztliche Hochschule Hannover University of Veterinary Medicine Hannover, Foundation'),
(2150, 'https://ror.org/05btaka91', 'no_lang_code', 1, 'https://ror.org/05btaka91 University of Veterinary Medicine in Košice Univerzita veterinárskeho lekárstva a farmácie v Košiciach'),
(2151, 'https://ror.org/02s6h0431', 'it', 1, 'https://ror.org/02s6h0431 Circolo Hospital and Macchi Foundation Ospedale di Circolo e Fondazione Macchi'),
(2152, 'https://ror.org/045vatr18', 'en', 1, 'https://ror.org/045vatr18 University of Ilorin Teaching Hospital'),
(2153, 'https://ror.org/02xf7p935', 'en', 1, 'https://ror.org/02xf7p935 Incheon National University 인천대학교'),
(2154, 'https://ror.org/04dzvks42', 'en', 1, 'https://ror.org/04dzvks42 XinHua Hospital 上海交通大学医学院附属新华医院'),
(2155, 'https://ror.org/01krywm46', 'en', 1, 'https://ror.org/01krywm46 University of Virginia Children''s Hospital'),
(2156, 'https://ror.org/03jt4wj37', 'de', 1, 'https://ror.org/03jt4wj37 Universitätskliniken Salzburg'),
(2157, 'https://ror.org/05vvzn852', 'en', 1, 'https://ror.org/05vvzn852 University of Kentucky HealthCare'),
(2158, 'https://ror.org/00nrtez23', 'it', 1, 'https://ror.org/00nrtez23 Azienda Ospedaliero Universitaria San Giovanni Battista'),
(2159, 'https://ror.org/05gg4qm19', 'en', 1, 'https://ror.org/05gg4qm19 Yamagata University Hospital 山形大学医学部附属病院'),
(2160, 'https://ror.org/04b7w1811', 'en', 1, 'https://ror.org/04b7w1811 Yamaguchi Prefectural University 山口県立大学'),
(2161, 'https://ror.org/03js6zg56', 'en', 1, 'https://ror.org/03js6zg56 University of Agricultural Sciences, Bangalore'),
(2162, 'https://ror.org/05jc5ee02', 'en', 1, 'https://ror.org/05jc5ee02 University of Minnesota Children''s Hospital'),
(2163, 'https://ror.org/00vkrxq08', 'en', 1, 'https://ror.org/00vkrxq08 University Malaya Medical Centre'),
(2164, 'https://ror.org/01rm42p40', 'en', 1, 'https://ror.org/01rm42p40 University of Alabama at Birmingham Hospital'),
(2165, 'https://ror.org/05vzbfc95', 'en', 1, 'https://ror.org/05vzbfc95 Yeditepe University Hospital Yeditepe Üniversitesi Hastanesi'),
(2166, 'https://ror.org/058x7dy48', 'en', 1, 'https://ror.org/058x7dy48 Royal United Hospital Bath NHS Trust'),
(2167, 'https://ror.org/0586bt104', 'en', 1, 'https://ror.org/0586bt104 Southport and Ormskirk Hospital NHS Trust'),
(2168, 'https://ror.org/0524j1g61', 'en', 1, 'https://ror.org/0524j1g61 Stoke Mandeville Hospital Ysbyty Stoke Mandeville'),
(2169, 'https://ror.org/03w8m2977', 'no_lang_code', 1, 'https://ror.org/03w8m2977 Yibin University'),
(2170, 'https://ror.org/04hk86037', 'en', 1, 'https://ror.org/04hk86037 Universidad de Matanzas "Camilo Cienfuegos" University of Matanzas University of Matanzas "Camilo Cienfuegos"'),
(2171, 'https://ror.org/0137gef36', 'no_lang_code', 1, 'https://ror.org/0137gef36 Yogi Vemana University யோகி வேமனா பல்கலைக்கழகம் యోగి వేమన విశ్వవిద్యాలయం'),
(2172, 'https://ror.org/01fv1ds98', 'no_lang_code', 1, 'https://ror.org/01fv1ds98 Yuan Ze University'),
(2173, 'https://ror.org/02jb3jv25', 'en', 1, 'https://ror.org/02jb3jv25 Yuanpei University 元培醫事科技大學'),
(2174, 'https://ror.org/04skph061', 'en', 1, 'https://ror.org/04skph061 Hospital de la Universidad de Nuevo México University of New Mexico Hospital'),
(2175, 'https://ror.org/02yx0mh38', 'en', 1, 'https://ror.org/02yx0mh38 University of Miami Hospital'),
(2176, 'https://ror.org/015566d55', 'en', 1, 'https://ror.org/015566d55 University of Azad Jammu and Kashmir'),
(2177, 'https://ror.org/030jhb479', 'en', 1, 'https://ror.org/030jhb479 Yunnan Nationalities University 云南民族大学'),
(2178, 'https://ror.org/0317ekv86', 'en', 1, 'https://ror.org/0317ekv86 University of Bahrain جامعة البحرين'),
(2179, 'https://ror.org/00mbhee72', 'en', 1, 'https://ror.org/00mbhee72 University Medical Center of Princeton'),
(2180, 'https://ror.org/04bf33n91', 'en', 1, 'https://ror.org/04bf33n91 University of Balochistan جامعہ بلوچستان'),
(2181, 'https://ror.org/04mrdd905', 'en', 1, 'https://ror.org/04mrdd905 University of Wisconsin American Family Children''s Hospital'),
(2182, 'https://ror.org/01t8svj65', 'en', 1, 'https://ror.org/01t8svj65 University of California San Francisco Medical Center'),
(2183, 'https://ror.org/04k3jt835', 'en', 1, 'https://ror.org/04k3jt835 Ronald Reagan UCLA Medical Center'),
(2184, 'https://ror.org/02z58ft15', 'en', 1, 'https://ror.org/02z58ft15 University of Charleston Université de Charleston'),
(2185, 'https://ror.org/006jjmw19', 'en', 1, 'https://ror.org/006jjmw19 Hospital de la Universidad de Colorado University of Colorado Hospital'),
(2186, 'https://ror.org/03vz8ns51', 'en', 1, 'https://ror.org/03vz8ns51 Ziauddin University'),
(2187, 'https://ror.org/04arkmn57', 'en', 1, 'https://ror.org/04arkmn57 University of Defence Univerzita Obrany'),
(2188, 'https://ror.org/05qderh61', 'en', 1, 'https://ror.org/05qderh61 University of Calabar Yunifásítì ìlú Calabar'),
(2189, 'https://ror.org/0193sb042', 'en', 1, 'https://ror.org/0193sb042 Henry Ford Hospital Hôpital henry ford'),
(2190, 'https://ror.org/04jztag35', 'en', 1, 'https://ror.org/04jztag35 Peking Union Medical College Hospital 北京协和医院'),
(2191, 'https://ror.org/0050r1b65', 'en', 1, 'https://ror.org/0050r1b65 Third Affiliated Hospital of Southern Medical University 南方医科大学第三附属医院'),
(2192, 'https://ror.org/04dm1cm79', 'de', 1, 'https://ror.org/04dm1cm79 Universitätsmedizin Rostock'),
(2193, 'https://ror.org/00qmnd673', 'en', 1, 'https://ror.org/00qmnd673 Kindai University Hospital 近畿大学医学部 附属病院'),
(2194, 'https://ror.org/0419bgt07', 'en', 1, 'https://ror.org/0419bgt07 University of Florida Health Science Center'),
(2195, 'https://ror.org/05hm6ny55', 'en', 1, 'https://ror.org/05hm6ny55 Good Samaritan Hospital'),
(2196, 'https://ror.org/04ngv0f69', 'en', 1, 'https://ror.org/04ngv0f69 Buffalo General Medical Center'),
(2197, 'https://ror.org/01w5s1t11', 'en', 1, 'https://ror.org/01w5s1t11 Buffalo Medical Group'),
(2198, 'https://ror.org/00jbkk316', 'en', 1, 'https://ror.org/00jbkk316 Buffalo VA Medical Center'),
(2199, 'https://ror.org/05h7pem82', 'no_lang_code', 1, 'https://ror.org/05h7pem82 Bugando Medical Centre'),
(2200, 'https://ror.org/01vtn3k88', 'es', 1, 'https://ror.org/01vtn3k88 Hospital Pablo Tobon Uribe'),
(2201, 'https://ror.org/03b3qq257', 'es', 1, 'https://ror.org/03b3qq257 Hospital Padre Hurtado'),
(2202, 'https://ror.org/03z0bdc81', 'no_lang_code', 1, 'https://ror.org/03z0bdc81 Bundang Jesaeng Hospital 분당제생병원'),
(2203, 'https://ror.org/0169n7f49', 'en', 1, 'https://ror.org/0169n7f49 251 Γενικό Νοσοκομείο Αεροπορίας Hellenic Airforce General Hospital'),
(2204, 'https://ror.org/05fx5mz56', 'en', 1, 'https://ror.org/05fx5mz56 University of Nigeria Teaching Hospital'),
(2205, 'https://ror.org/04dnsc767', 'en', 1, 'https://ror.org/04dnsc767 Burke Rehabilitation Hospital'),
(2206, 'https://ror.org/01pd66220', 'en', 1, 'https://ror.org/01pd66220 302 Military Hospital of China 中国人民解放军第302医院'),
(2207, 'https://ror.org/05g5v7496', 'en', 1, 'https://ror.org/05g5v7496 Burnley General Teaching Hospital'),
(2208, 'https://ror.org/05rq9gz82', 'en', 1, 'https://ror.org/05rq9gz82 303 Hospital of People''s Liberation Army 中国人民解放军303医院'),
(2209, 'https://ror.org/050k2da37', 'en', 1, 'https://ror.org/050k2da37 Global Medical Imaging'),
(2210, 'https://ror.org/05nhkt138', 'tr', 1, 'https://ror.org/05nhkt138 Bursa Yuksek Ihtisas Egitim Ve Arastirma Hastanesi'),
(2211, 'https://ror.org/042bhxs14', 'en', 1, 'https://ror.org/042bhxs14 Burdwan Medical College & Hospital'),
(2212, 'https://ror.org/03h3yrx93', 'es', 1, 'https://ror.org/03h3yrx93 Hospital Pediátrico Moctezuma'),
(2213, 'https://ror.org/05gh5ar80', 'en', 1, 'https://ror.org/05gh5ar80 Gloucestershire Royal Hospital'),
(2214, 'https://ror.org/03bzz8q98', 'en', 1, 'https://ror.org/03bzz8q98 175th Hospital of People''s Liberation Army 解放军第175医院'),
(2215, 'https://ror.org/05wnp6x23', 'en', 1, 'https://ror.org/05wnp6x23 Goa Dental College and Hospital'),
(2216, 'https://ror.org/0030d2559', 'en', 1, 'https://ror.org/0030d2559 Escola Médico-Cirúrgica de Goa Goa Medical College'),
(2217, 'https://ror.org/046x15q93', 'en', 1, 'https://ror.org/046x15q93 The 309th Hospital of Chinese People''s Liberation Army 中国人民解放军第三〇九医院'),
(2218, 'https://ror.org/01emxrg90', 'pt', 1, 'https://ror.org/01emxrg90 Hospital Pedro Hispano'),
(2219, 'https://ror.org/05eq01d13', 'en', 1, 'https://ror.org/05eq01d13 Gold Coast Hospital'),
(2220, 'https://ror.org/05kwhtp56', 'es', 1, 'https://ror.org/05kwhtp56 Hospital Perpetuo Socorro'),
(2221, 'https://ror.org/01vjtf564', 'en', 1, 'https://ror.org/01vjtf564 Rabin Medical Center'),
(2222, 'https://ror.org/0103jbm17', 'en', 1, 'https://ror.org/0103jbm17 Golden Jubilee National Hospital'),
(2223, 'https://ror.org/01zy69h55', 'en', 1, 'https://ror.org/01zy69h55 401 General Military Hospital of Athens 401 Γενικό Στρατιωτικό Νοσοκομείο Αθηνών'),
(2224, 'https://ror.org/00dfape04', 'en', 1, 'https://ror.org/00dfape04 Good Moonhwa Hospital 좋은문화병원'),
(2225, 'https://ror.org/03rj2a342', 'en', 1, 'https://ror.org/03rj2a342 Good Samaritan Hospital'),
(2226, 'https://ror.org/00d9qf519', 'en', 1, 'https://ror.org/00d9qf519 Topiwala National Medical College & BYL Nair Charitable Hospital'),
(2227, 'https://ror.org/02cpzy455', 'en', 1, 'https://ror.org/02cpzy455 424 General Military Hospital 424 Γενικό Στρατιωτικό Νοσοκομείο Θεσσαλονίκης'),
(2228, 'https://ror.org/03kzpyr73', 'en', 1, 'https://ror.org/03kzpyr73 MedStar Good Samaritan Hospital'),
(2229, 'https://ror.org/05bhd7f62', 'en', 1, 'https://ror.org/05bhd7f62 458th Hospital PLA 中国人民解放军第四五八'),
(2230, 'https://ror.org/03zms7281', 'en', 1, 'https://ror.org/03zms7281 Good Samaritan Hospital'),
(2231, 'https://ror.org/00n9v4y14', 'en', 1, 'https://ror.org/00n9v4y14 Good Samaritan Hospital'),
(2232, 'https://ror.org/00ep78v21', 'en', 1, 'https://ror.org/00ep78v21 Advocate Good Samaritan Hospital'),
(2233, 'https://ror.org/054qnke07', 'en', 1, 'https://ror.org/054qnke07 Ningbo No.6 Hospital 宁波市第六医院'),
(2234, 'https://ror.org/01tek4f86', 'hu', 1, 'https://ror.org/01tek4f86 Bács-Kiskun Megyei Kórház'),
(2235, 'https://ror.org/05wr49d48', 'en', 1, 'https://ror.org/05wr49d48 Wakayama University 和歌山大学'),
(2236, 'https://ror.org/00a0pt066', 'en', 1, 'https://ror.org/00a0pt066 MultiCare Good Samaritan Hospital'),
(2237, 'https://ror.org/003hhqx84', 'it', 1, 'https://ror.org/003hhqx84 Ospedale Antonio Cardarelli'),
(2238, 'https://ror.org/05r3hm325', 'it', 1, 'https://ror.org/05r3hm325 Azienda Ospedaliera Carlo Poma'),
(2239, 'https://ror.org/030kaa114', 'en', 1, 'https://ror.org/030kaa114 Alessandro Manzoni Hospital Ospedale Alessandro Manzoni'),
(2240, 'https://ror.org/043m85342', 'en', 1, 'https://ror.org/043m85342 Hospital Povisa Povisa Hospital'),
(2241, 'https://ror.org/05h0f1d70', 'en', 1, 'https://ror.org/05h0f1d70 C. S. Mott Children''s Hospital'),
(2242, 'https://ror.org/02dpa2319', 'en', 1, 'https://ror.org/02dpa2319 Cornwall Regional Hospital'),
(2243, 'https://ror.org/03pz7fw94', 'it', 1, 'https://ror.org/03pz7fw94 Azienda Sanitaria Ospedaliera S.Croce e Carle Cuneo'),
(2244, 'https://ror.org/03tkfgy13', 'en', 1, 'https://ror.org/03tkfgy13 Simanogleio-Amalia Fleming General Hospital Σισμανόγλειο-Αμαλία Φλέμινγκ Γενικό Νοσοκομείο'),
(2245, 'https://ror.org/01n2xwm51', 'en', 1, 'https://ror.org/01n2xwm51 Meyer Children''s Hospital Ospedale Pediatrico Meyer'),
(2246, 'https://ror.org/03h1jr755', 'en', 1, 'https://ror.org/03h1jr755 Argerich Hospital'),
(2247, 'https://ror.org/022v32y85', 'en', 1, 'https://ror.org/022v32y85 Andreas Sygros Hospital Ανδρέας Συγγρός Νοσοκομείο'),
(2248, 'https://ror.org/05gehxw18', 'en', 1, 'https://ror.org/05gehxw18 Detroit Medical Center'),
(2249, 'https://ror.org/05ph11m41', 'en', 1, 'https://ror.org/05ph11m41 CTO Hospital Ospedale Centro Traumatologico Ortopedico'),
(2250, 'https://ror.org/00fj3a809', 'en', 1, 'https://ror.org/00fj3a809 Good Samaritan Regional Medical Center'),
(2251, 'https://ror.org/04jy8zw69', 'en', 1, 'https://ror.org/04jy8zw69 Yehuda Abarbanel Mental Health Center אברבנאל - המרכז לבריאות הנפש'),
(2252, 'https://ror.org/02b72da46', 'en', 1, 'https://ror.org/02b72da46 Abbasi Shaheed Hospital عباسی شهيد ہسپتال'),
(2253, 'https://ror.org/01fzm0693', 'en', 1, 'https://ror.org/01fzm0693 Abbott Northwestern Hospital'),
(2254, 'https://ror.org/04cb4je22', 'en', 1, 'https://ror.org/04cb4je22 Ca'' Foncello Hospital'),
(2255, 'https://ror.org/012bk6h61', 'da', 1, 'https://ror.org/012bk6h61 Medicinsk-historisk Museum i Næstved'),
(2256, 'https://ror.org/01xapny78', 'en', 1, 'https://ror.org/01xapny78 Cabrini Medical Center'),
(2257, 'https://ror.org/040nggs60', 'en', 1, 'https://ror.org/040nggs60 West China Medical Center of Sichuan University 四川大学华西医学中心'),
(2258, 'https://ror.org/045nawc23', 'nl', 1, 'https://ror.org/045nawc23 Tergooi'),
(2259, 'https://ror.org/03p30f964', 'en', 1, 'https://ror.org/03p30f964 Lincoln County Hospital'),
(2260, 'https://ror.org/021nb2v44', 'en', 1, 'https://ror.org/021nb2v44 Medical College and Hospital, Kolkata कलकत्ता मेडिकल कॉलेज কলকাতা মেডিক্যাল কলেজ ও হাসপাতাল'),
(2261, 'https://ror.org/02jxw8995', 'no_lang_code', 1, 'https://ror.org/02jxw8995 Goroka Base Hospital'),
(2262, 'https://ror.org/04w40b524', 'en', 1, 'https://ror.org/04w40b524 Abderrahmane Mami Hospital'),
(2263, 'https://ror.org/0020hse07', 'en', 1, 'https://ror.org/0020hse07 Aberdeen Maternity Hospital'),
(2264, 'https://ror.org/05xanxb38', 'en', 1, 'https://ror.org/05xanxb38 Govt. Dental College & Hospital'),
(2265, 'https://ror.org/029s9j634', 'en', 1, 'https://ror.org/029s9j634 Cairns Hospital'),
(2266, 'https://ror.org/05qkf9y72', 'en', 1, 'https://ror.org/05qkf9y72 Government General Hospital'),
(2267, 'https://ror.org/03jgh1p68', 'en', 1, 'https://ror.org/03jgh1p68 Abington Memorial Hospital'),
(2268, 'https://ror.org/026b7da27', 'en', 1, 'https://ror.org/026b7da27 Government Medical College'),
(2269, 'https://ror.org/05aeshm06', 'en', 1, 'https://ror.org/05aeshm06 Governador Celso Ramos Hospital'),
(2270, 'https://ror.org/04qma4821', 'pt', 1, 'https://ror.org/04qma4821 Hospital Pró-Cardíaco'),
(2271, 'https://ror.org/02e2dtd78', 'en', 1, 'https://ror.org/02e2dtd78 Calcutta National Medical College and Hospital কলিকাতা জাতীয় আয়ুর্বিজ্ঞান বিদ্যামন্দির జాతీయ వైద్య కళాశాల'),
(2272, 'https://ror.org/05x57ne79', 'en', 1, 'https://ror.org/05x57ne79 Calderdale Royal Hospital'),
(2273, 'https://ror.org/02cg59151', 'pt', 1, 'https://ror.org/02cg59151 Hospital Pulido Valente'),
(2274, 'https://ror.org/00m4gxn44', 'en', 1, 'https://ror.org/00m4gxn44 Government Medical College'),
(2275, 'https://ror.org/010gbda42', 'en', 1, 'https://ror.org/010gbda42 Government Medical College and Hospital'),
(2276, 'https://ror.org/03237y496', 'en', 1, 'https://ror.org/03237y496 Ahmadu Bello University Teaching Hospital'),
(2277, 'https://ror.org/046bk9643', 'en', 1, 'https://ror.org/046bk9643 Government Medical College, Amritsar ਸਰਕਾਰੀ ਮੈਡੀਕਲ ਕਾਲਜ'),
(2278, 'https://ror.org/019e4d354', 'en', 1, 'https://ror.org/019e4d354 Government Medical College ਸਰਕਾਰੀ ਮੈਡੀਕਲ ਕਾਲਜ'),
(2279, 'https://ror.org/04y908s98', 'en', 1, 'https://ror.org/04y908s98 Government Medical College'),
(2280, 'https://ror.org/037wq4b75', 'de', 1, 'https://ror.org/037wq4b75 Klinikum Ludwigshafen'),
(2281, 'https://ror.org/007fenw03', 'en', 1, 'https://ror.org/007fenw03 Government Medical College ഗവൺമെന്റ് മെഡിക്കൽ കോളേജ്, തിരുവനന്തപുരം'),
(2282, 'https://ror.org/0015r4831', 'en', 1, 'https://ror.org/0015r4831 Government Medical College Bhavnagar'),
(2283, 'https://ror.org/05kn6fr85', 'en', 1, 'https://ror.org/05kn6fr85 Government Medical College शासकीय वैद्यकीय महाविद्यालय व रुग्णालय, औरंगाबाद'),
(2284, 'https://ror.org/05w6g2m14', 'en', 1, 'https://ror.org/05w6g2m14 Government Medical College'),
(2285, 'https://ror.org/005h6qd35', 'en', 1, 'https://ror.org/005h6qd35 Government Medical College'),
(2286, 'https://ror.org/016je1253', 'en', 1, 'https://ror.org/016je1253 Government Medical College'),
(2287, 'https://ror.org/03yz7v531', 'en', 1, 'https://ror.org/03yz7v531 Mysore Medical College'),
(2288, 'https://ror.org/045xjv649', 'en', 1, 'https://ror.org/045xjv649 Netaji Subhash Chandra Bose Medical College'),
(2289, 'https://ror.org/02s4xaf90', 'en', 1, 'https://ror.org/02s4xaf90 Calgary General Hospital'),
(2290, 'https://ror.org/01zjsmf32', 'en', 1, 'https://ror.org/01zjsmf32 Government Rajaji Hospital'),
(2291, 'https://ror.org/0567p6j84', 'en', 1, 'https://ror.org/0567p6j84 Stanley Medical College இசுடான்லி மருத்துவக் கல்லூரி'),
(2292, 'https://ror.org/00k7zpp15', 'en', 1, 'https://ror.org/00k7zpp15 California Animal Hospital'),
(2293, 'https://ror.org/058fy8f68', 'en', 1, 'https://ror.org/058fy8f68 Govind Ballabh Pant Hospital'),
(2294, 'https://ror.org/03cf9xg09', 'en', 1, 'https://ror.org/03cf9xg09 California Institute for Medical Research'),
(2295, 'https://ror.org/004gqpt18', 'de', 1, 'https://ror.org/004gqpt18 Landeskrankenhaus Feldkirch'),
(2296, 'https://ror.org/053xhbr86', 'en', 1, 'https://ror.org/053xhbr86 Ryhov Hospital Jönköping'),
(2297, 'https://ror.org/010njnb56', 'en', 1, 'https://ror.org/010njnb56 Craig Hospital'),
(2298, 'https://ror.org/00v6af077', 'en', 1, 'https://ror.org/00v6af077 Calvary Hospital'),
(2299, 'https://ror.org/03cngf009', 'en', 1, 'https://ror.org/03cngf009 Craigavon Area Hospital'),
(2300, 'https://ror.org/00k7r7f88', 'en', 1, 'https://ror.org/00k7r7f88 Xuan Wu Hospital of the Capital Medical University 北京市老年病医疗研究中心'),
(2301, 'https://ror.org/00186nd07', 'en', 1, 'https://ror.org/00186nd07 Gajara Raja Medical College'),
(2302, 'https://ror.org/00hysg385', 'en', 1, 'https://ror.org/00hysg385 Sinai Grace Hospital'),
(2303, 'https://ror.org/01bnyxq20', 'es', 1, 'https://ror.org/01bnyxq20 Hospital Ramos Mejía'),
(2304, 'https://ror.org/05c4nx247', 'en', 1, 'https://ror.org/05c4nx247 B.C. Women''s Hospital & Health Centre'),
(2305, 'https://ror.org/05dp7wz77', 'en', 1, 'https://ror.org/05dp7wz77 Creative Health Care Management'),
(2306, 'https://ror.org/00nqxe643', 'en', 1, 'https://ror.org/00nqxe643 Cama and Albless Hospital'),
(2307, 'https://ror.org/04mf6js28', 'en', 1, 'https://ror.org/04mf6js28 Credit Valley Hospital'),
(2308, 'https://ror.org/0116mdr21', 'en', 1, 'https://ror.org/0116mdr21 Graduate Hospital'),
(2309, 'https://ror.org/00k1xr956', 'en', 1, 'https://ror.org/00k1xr956 Grady Health System'),
(2310, 'https://ror.org/009hj8759', 'en', 1, 'https://ror.org/009hj8759 Grady Memorial Hospital'),
(2311, 'https://ror.org/00asaax56', 'en', 1, 'https://ror.org/00asaax56 Accreditation Council for Graduate Medical Education'),
(2312, 'https://ror.org/014tckg45', 'en', 1, 'https://ror.org/014tckg45 Crichton Royal Hospital'),
(2313, 'https://ror.org/056q45h83', 'es', 1, 'https://ror.org/056q45h83 Hospital Doctor Hernán Henríquez Aravena'),
(2314, 'https://ror.org/02wgfsz09', 'en', 1, 'https://ror.org/02wgfsz09 Grant Medical Center'),
(2315, 'https://ror.org/02z125451', 'en', 1, 'https://ror.org/02z125451 Zhongshan Hospital of Xiamen University 厦门大学附属中山医院'),
(2316, 'https://ror.org/03dm1pq74', 'en', 1, 'https://ror.org/03dm1pq74 Grant Medical College and Sir Jamshedjee Jeejeebhoy Group of Hospitals'),
(2317, 'https://ror.org/01t54q348', 'en', 1, 'https://ror.org/01t54q348 Grantham Hospital 葛量洪醫院'),
(2318, 'https://ror.org/0457yg222', 'en', 1, 'https://ror.org/0457yg222 Acıbadem Kadıköy Hospital Kadıköy Hastanesi'),
(2319, 'https://ror.org/04xfhjr27', 'en', 1, 'https://ror.org/04xfhjr27 Great Western Hospital'),
(2320, 'https://ror.org/0077fnc39', 'en', 1, 'https://ror.org/0077fnc39 Greater Baltimore Medical Center'),
(2321, 'https://ror.org/01mtpwn71', 'no_lang_code', 1, 'https://ror.org/01mtpwn71 Adan Hospital مستشفى العدان'),
(2322, 'https://ror.org/02fw4cc98', 'en', 1, 'https://ror.org/02fw4cc98 Canadian Agency for Drugs and Technologies in Health'),
(2323, 'https://ror.org/05g2amy04', 'en', 1, 'https://ror.org/05g2amy04 Acıbadem Adana Hospital'),
(2324, 'https://ror.org/01dgc8k02', 'it', 1, 'https://ror.org/01dgc8k02 Ospedale Cristo Re'),
(2325, 'https://ror.org/05x5g2972', 'en', 1, 'https://ror.org/05x5g2972 Crittenton Hospital Medical Center'),
(2326, 'https://ror.org/00zydn239', 'tr', 1, 'https://ror.org/00zydn239 Adana Numune Eğitim ve Araştırma Hastanesi'),
(2327, 'https://ror.org/01ggyr403', 'en', 1, 'https://ror.org/01ggyr403 Canadian Foundation for Healthcare Improvement'),
(2328, 'https://ror.org/04abjq359', 'es', 1, 'https://ror.org/04abjq359 Hospital Ruber Internacional'),
(2329, 'https://ror.org/04f3vmh71', 'tr', 1, 'https://ror.org/04f3vmh71 Medeniyet Üniversitesi Göztepe Eğitim ve Araştırma Hastanesi'),
(2330, 'https://ror.org/01vx7zt03', 'en', 1, 'https://ror.org/01vx7zt03 Addington Hospital'),
(2331, 'https://ror.org/019myg640', 'de', 1, 'https://ror.org/019myg640 Krankenanstalt Rudolfstiftung der Stadt Wien'),
(2332, 'https://ror.org/057xx1h21', 'en', 1, 'https://ror.org/057xx1h21 Association Médicale Canadienne Canadian Medical Association'),
(2333, 'https://ror.org/041f0qb31', 'en', 1, 'https://ror.org/041f0qb31 University Hospital Crosshouse'),
(2334, 'https://ror.org/05a2agx14', 'en', 1, 'https://ror.org/05a2agx14 Crouse Hospital'),
(2335, 'https://ror.org/05qcjn862', 'en', 1, 'https://ror.org/05qcjn862 Greenbrier Valley Medical Center'),
(2336, 'https://ror.org/05pfdp204', 'en', 1, 'https://ror.org/05pfdp204 Crozer-Keystone Health System'),
(2337, 'https://ror.org/05csdwp88', 'en', 1, 'https://ror.org/05csdwp88 Greenslopes Private Hospital'),
(2338, 'https://ror.org/04h7nbn38', 'en', 1, 'https://ror.org/04h7nbn38 Canberra Hospital'),
(2339, 'https://ror.org/02vdn8424', 'en', 1, 'https://ror.org/02vdn8424 Administration of Occupational Safety and Health Vinnueftirlitið'),
(2340, 'https://ror.org/02atpex25', 'es', 1, 'https://ror.org/02atpex25 Hospital Rio Carrion'),
(2341, 'https://ror.org/03025ga79', 'en', 1, 'https://ror.org/03025ga79 AC Camargo Hospital'),
(2342, 'https://ror.org/036qtaj98', 'en', 1, 'https://ror.org/036qtaj98 Greenwich Hospital'),
(2343, 'https://ror.org/02aseym49', 'en', 1, 'https://ror.org/02aseym49 Australian Centre for Disease Preparedness'),
(2344, 'https://ror.org/00wpte173', 'en', 1, 'https://ror.org/00wpte173 Grey Nuns Community Hospital'),
(2345, 'https://ror.org/03qxkp346', 'pt', 1, 'https://ror.org/03qxkp346 Hospital of St. Francis Xavier'),
(2346, 'https://ror.org/003k75717', 'en', 1, 'https://ror.org/003k75717 Advocate Health Care'),
(2347, 'https://ror.org/044v7v886', 'en', 1, 'https://ror.org/044v7v886 Advocate Children''s Hospital'),
(2348, 'https://ror.org/00qz24g20', 'en', 1, 'https://ror.org/00qz24g20 University of North Carolina Health Care'),
(2349, 'https://ror.org/00xnmcq32', 'en', 1, 'https://ror.org/00xnmcq32 Grey''s Hospital'),
(2350, 'https://ror.org/05xdxc763', 'en', 1, 'https://ror.org/05xdxc763 Advocate Children''s Hospital'),
(2351, 'https://ror.org/00c879s84', 'en', 1, 'https://ror.org/00c879s84 Groote Schuur Hospital'),
(2352, 'https://ror.org/05v4pwe63', 'en', 1, 'https://ror.org/05v4pwe63 Canniesburn Hospital'),
(2353, 'https://ror.org/03mtnpp42', 'it', 1, 'https://ror.org/03mtnpp42 Ospedale Cannizzaro'),
(2354, 'https://ror.org/00tg1yh20', 'no_lang_code', 1, 'https://ror.org/00tg1yh20 Aetna (United States)'),
(2355, 'https://ror.org/002ztb251', 'en', 1, 'https://ror.org/002ztb251 Ganesh Shankar Vidyarthi Memorial Medical College गणेश शंकर विद्यार्थी मेमोरियल मेडिकल कॉलेज'),
(2356, 'https://ror.org/02v8rz176', 'no_lang_code', 1, 'https://ror.org/02v8rz176 Guru Teg Bahadur Hospital'),
(2357, 'https://ror.org/00wspbn44', 'en', 1, 'https://ror.org/00wspbn44 Canterbury Health Laboratories'),
(2358, 'https://ror.org/0152bt112', 'en', 1, 'https://ror.org/0152bt112 Health Sciences and Nutrition'),
(2359, 'https://ror.org/03vw2zn10', 'fr', 1, 'https://ror.org/03vw2zn10 Hôpital Saint-Vincent-de-Paul'),
(2360, 'https://ror.org/03jpekd50', 'en', 1, 'https://ror.org/03jpekd50 Guangdong General Hospital 广东省老年医学研究所'),
(2361, 'https://ror.org/03y2evj08', 'tr', 1, 'https://ror.org/03y2evj08 Göztepe Şafak Hastanesi'),
(2362, 'https://ror.org/056tb3809', 'de', 1, 'https://ror.org/056tb3809 Kantonsspital Aarau'),
(2363, 'https://ror.org/04qdwp261', 'es', 1, 'https://ror.org/04qdwp261 Hospital Clinico San Borja Arriaran Hospital San Borja Arriarán'),
(2364, 'https://ror.org/03mt12903', 'es', 1, 'https://ror.org/03mt12903 Hospital San Juan de Dios'),
(2365, 'https://ror.org/0353kya20', 'pt', 1, 'https://ror.org/0353kya20 Hospital Curry Cabral'),
(2366, 'https://ror.org/0166mge61', 'es', 1, 'https://ror.org/0166mge61 Hospital San Juan de Dios'),
(2367, 'https://ror.org/01bgds823', 'en', 1, 'https://ror.org/01bgds823 Affiliated Hospital of Chengde Medical College 承德医学院附属医院'),
(2368, 'https://ror.org/03yt4qx74', 'en', 1, 'https://ror.org/03yt4qx74 Kasumigaura Medical Center 霞ヶ浦医療センター'),
(2369, 'https://ror.org/044t1gs69', 'es', 1, 'https://ror.org/044t1gs69 Centro de Alta Resolución San Millán'),
(2370, 'https://ror.org/057p7h461', 'en', 1, 'https://ror.org/057p7h461 Affiliated Hospital of Guangdong Medical College Hospital'),
(2371, 'https://ror.org/05ef11p71', 'en', 1, 'https://ror.org/05ef11p71 Grochowski Hospital'),
(2372, 'https://ror.org/04yd6pw26', 'en', 1, 'https://ror.org/04yd6pw26 Cape Cod Hospital'),
(2373, 'https://ror.org/038ygd080', 'en', 1, 'https://ror.org/038ygd080 Inner Mongolia Medical College Hospital 内蒙古医科大学附属医院'),
(2374, 'https://ror.org/01a4bac78', 'en', 1, 'https://ror.org/01a4bac78 Cantox Health Sciences International'),
(2375, 'https://ror.org/045czjy48', 'en', 1, 'https://ror.org/045czjy48 Cape Fear Valley Medical Center'),
(2376, 'https://ror.org/02n73hp60', 'en', 1, 'https://ror.org/02n73hp60 Victoria General Hospital'),
(2377, 'https://ror.org/05m7vf540', 'en', 1, 'https://ror.org/05m7vf540 Capital District Health Authority'),
(2378, 'https://ror.org/028nq5192', 'en', 1, 'https://ror.org/028nq5192 Affiliated Hospital of Jiangxi College of TCM 江西中医学院附属医院'),
(2379, 'https://ror.org/04b4hfb84', 'en', 1, 'https://ror.org/04b4hfb84 Green Pastures Hospital and Rehabilitation Centre'),
(2380, 'https://ror.org/049dkqr57', 'en', 1, 'https://ror.org/049dkqr57 Ningxia Medical University General Hospital 宁夏医科大学总医院'),
(2381, 'https://ror.org/01673gn35', 'en', 1, 'https://ror.org/01673gn35 Affiliated Hospital of North Sichuan Medical College 川北医学院附属医院'),
(2382, 'https://ror.org/05t9mkx39', 'en', 1, 'https://ror.org/05t9mkx39 Touro University Nevada Université touro du nevada'),
(2383, 'https://ror.org/011xhcs96', 'en', 1, 'https://ror.org/011xhcs96 Affiliated Hospital of Xuzhou Medical College'),
(2384, 'https://ror.org/03vc5bf16', 'en', 1, 'https://ror.org/03vc5bf16 Cappagh National Orthopaedic Hospital'),
(2385, 'https://ror.org/046c18a90', 'en', 1, 'https://ror.org/046c18a90 Guangzhou Medical University Cancer Hospital 广州医科大学附属肿瘤医院'),
(2386, 'https://ror.org/01yp8kc21', 'es', 1, 'https://ror.org/01yp8kc21 Hospital San Pedro de Alcántara'),
(2387, 'https://ror.org/02jj7t426', 'en', 1, 'https://ror.org/02jj7t426 Dade County Medical Examiner Department'),
(2388, 'https://ror.org/00e7ez509', 'no_lang_code', 1, 'https://ror.org/00e7ez509 Daegu Fatima Hospital 대구파티마병원'),
(2389, 'https://ror.org/00jq51013', 'en', 1, 'https://ror.org/00jq51013 Cardinal Glennon Children’s Medical Center'),
(2390, 'https://ror.org/04sz7qx51', 'fr', 1, 'https://ror.org/04sz7qx51 Centre Hospitalier Universitaire de Rabat-Salé'),
(2391, 'https://ror.org/02sxy6c22', 'no_lang_code', 1, 'https://ror.org/02sxy6c22 Daehang Hospital 대항병원'),
(2392, 'https://ror.org/03jmfdf59', 'en', 1, 'https://ror.org/03jmfdf59 Agency for Healthcare Research and Quality'),
(2393, 'https://ror.org/034w83t88', 'tr', 1, 'https://ror.org/034w83t88 Özel Trakya Hastanesi'),
(2394, 'https://ror.org/008p85724', 'en', 1, 'https://ror.org/008p85724 Guangdong Province Stomatological Hospital 广东省口腔医院'),
(2395, 'https://ror.org/036dkm174', 'es', 1, 'https://ror.org/036dkm174 Hospital Santa Caterina'),
(2396, 'https://ror.org/04sheqe49', 'en', 1, 'https://ror.org/04sheqe49 Daisy Hill Hospital Otharlann Chnoc na Nóiníní'),
(2397, 'https://ror.org/01vka3a64', 'en', 1, 'https://ror.org/01vka3a64 CARE Hospitals'),
(2398, 'https://ror.org/029cz3039', 'en', 1, 'https://ror.org/029cz3039 Kijabe Hospital'),
(2399, 'https://ror.org/0534awx66', 'en', 1, 'https://ror.org/0534awx66 Guangzhou Eighth People''s Hospital 广州市第八人民医院'),
(2400, 'https://ror.org/02r581p42', 'pt', 1, 'https://ror.org/02r581p42 Hospital de Santa Cruz'),
(2401, 'https://ror.org/04szr1369', 'en', 1, 'https://ror.org/04szr1369 Guangzhou Chest Hospital 广州市胸科医院'),
(2402, 'https://ror.org/01dkn0c77', 'pt', 1, 'https://ror.org/01dkn0c77 Hospital Santa Izabel'),
(2403, 'https://ror.org/022jeg055', 'en', 1, 'https://ror.org/022jeg055 Dallas Diabetes Research Center'),
(2404, 'https://ror.org/036nxkh98', 'en', 1, 'https://ror.org/036nxkh98 Carilion Roanoke Memorial Hospital'),
(2405, 'https://ror.org/04sgy9050', 'pt', 1, 'https://ror.org/04sgy9050 Hospital Santa Marcelina'),
(2406, 'https://ror.org/047n0b268', 'en', 1, 'https://ror.org/047n0b268 Aichi Prefectural University 愛知県立大学'),
(2407, 'https://ror.org/001xq1j98', 'en', 1, 'https://ror.org/001xq1j98 Covenant Health'),
(2408, 'https://ror.org/00cdz3124', 'es', 1, 'https://ror.org/00cdz3124 Hospital General Universitario Santa María del Rosell'),
(2409, 'https://ror.org/051mn8706', 'en', 1, 'https://ror.org/051mn8706 Tumor Hospital of Guangxi Medical University 广西医科大学肿瘤医院'),
(2410, 'https://ror.org/01zqztb27', 'no_lang_code', 1, 'https://ror.org/01zqztb27 Caritas Medical Centre 明愛醫院'),
(2411, 'https://ror.org/00hfbva78', 'en', 1, 'https://ror.org/00hfbva78 General Hospital of Guangzhou Military Command 广州军区广州总医院'),
(2412, 'https://ror.org/023pqj155', 'es', 1, 'https://ror.org/023pqj155 Hospital Santiago Apostol'),
(2413, 'https://ror.org/02m9pj861', 'pt', 1, 'https://ror.org/02m9pj861 Hospital de Santo António'),
(2414, 'https://ror.org/04abkkn33', 'pt', 1, 'https://ror.org/04abkkn33 Hospital Santo António dos Capuchos'),
(2415, 'https://ror.org/042jtt364', 'en', 1, 'https://ror.org/042jtt364 Air Force General Hospital PLA'),
(2416, 'https://ror.org/03p43tq86', 'ms', 1, 'https://ror.org/03p43tq86 Hospital Selayang'),
(2417, 'https://ror.org/01b2c5015', 'es', 1, 'https://ror.org/01b2c5015 Hospital Sierrallana'),
(2418, 'https://ror.org/04wwg3z97', 'no_lang_code', 1, 'https://ror.org/04wwg3z97 Dammam Central Hospital مستشفى الدمام المركزي'),
(2419, 'https://ror.org/04z5vy146', 'en', 1, 'https://ror.org/04z5vy146 Carlo Forlanini Hospital'),
(2420, 'https://ror.org/034pdr896', 'en', 1, 'https://ror.org/034pdr896 Dallas VA Medical Center'),
(2421, 'https://ror.org/04zygv656', 'en', 1, 'https://ror.org/04zygv656 Airedale General Hospital'),
(2422, 'https://ror.org/05sb0dh40', 'en', 1, 'https://ror.org/05sb0dh40 Aishin Memorial Hospital 愛心メモリアル病院'),
(2423, 'https://ror.org/0041bpv82', 'en', 1, 'https://ror.org/0041bpv82 Hospital Sultanah Aminah Sultanah Aminah Hospital'),
(2424, 'https://ror.org/0576bwz31', 'no_lang_code', 1, 'https://ror.org/0576bwz31 Aizawa Hospital 相澤病院'),
(2425, 'https://ror.org/04j6ay666', 'en', 1, 'https://ror.org/04j6ay666 Akashi Medical Center 明石医療センター'),
(2426, 'https://ror.org/02f38b560', 'pt', 1, 'https://ror.org/02f38b560 Hospital São Rafael'),
(2427, 'https://ror.org/01pm59m24', 'en', 1, 'https://ror.org/01pm59m24 Akashi Municipal City Hospital 明石市立市民病院'),
(2428, 'https://ror.org/02dc47z81', 'pt', 1, 'https://ror.org/02dc47z81 Hospital São Teotónio'),
(2429, 'https://ror.org/02cy9a842', 'en', 1, 'https://ror.org/02cy9a842 Carmel Medical Center'),
(2430, 'https://ror.org/043h2w593', 'en', 1, 'https://ror.org/043h2w593 Akita Red Cross Hospital 秋田赤十字病院'),
(2431, 'https://ror.org/03r5mk904', 'pt', 1, 'https://ror.org/03r5mk904 Hospital Sírio-Libanês Syrian-Lebanese Hospital'),
(2432, 'https://ror.org/0107t3e14', 'en', 1, 'https://ror.org/0107t3e14 Akron Children''s Hospital'),
(2433, 'https://ror.org/043xhwq03', 'en', 1, 'https://ror.org/043xhwq03 Carney Hospital'),
(2434, 'https://ror.org/001m5qg34', 'en', 1, 'https://ror.org/001m5qg34 Darent Valley Hospital'),
(2435, 'https://ror.org/05txhk819', 'es', 1, 'https://ror.org/05txhk819 Hospital General de Agudos Dr. TEODORO ALVAREZ'),
(2436, 'https://ror.org/01xb3t395', 'en', 1, 'https://ror.org/01xb3t395 Summa Akron City Hospital'),
(2437, 'https://ror.org/05rm13h81', 'ms', 1, 'https://ror.org/05rm13h81 Hospital Tengku Ampuan Afzan'),
(2438, 'https://ror.org/04yxtqc27', 'en', 1, 'https://ror.org/04yxtqc27 Caroline Chisholm Centre for Health Ethics'),
(2439, 'https://ror.org/0493tt883', 'en', 1, 'https://ror.org/0493tt883 Carl T. Hayden Veterans Affairs Medical Center'),
(2440, 'https://ror.org/000c39f30', 'en', 1, 'https://ror.org/000c39f30 Al Ain Hospital مستشفى العين'),
(2441, 'https://ror.org/04v91tb50', 'es', 1, 'https://ror.org/04v91tb50 Complejo Hospitalario Torrecárdenas'),
(2442, 'https://ror.org/00zszzj16', 'en', 1, 'https://ror.org/00zszzj16 Al Amal Hospital Jeddah'),
(2443, 'https://ror.org/03gd6ja31', 'en', 1, 'https://ror.org/03gd6ja31 Al-Ameen Medical College'),
(2444, 'https://ror.org/02rn83489', 'en', 1, 'https://ror.org/02rn83489 Corniche Hospital مستشفى الكورنيش للأمومة'),
(2445, 'https://ror.org/01pzjt917', 'eu', 1, 'https://ror.org/01pzjt917 Hospital Txagorritxu'),
(2446, 'https://ror.org/03rhyss57', 'en', 1, 'https://ror.org/03rhyss57 Day General Hospital بیمارستان دی'),
(2447, 'https://ror.org/024eyyq66', 'en', 1, 'https://ror.org/024eyyq66 Armed Forces Hospital'),
(2448, 'https://ror.org/052g5ww90', 'fr', 1, 'https://ror.org/052g5ww90 Hopital Universitaire Habib Bourguiba'),
(2449, 'https://ror.org/0393ghj09', 'no_lang_code', 1, 'https://ror.org/0393ghj09 Habib hospital Thameur'),
(2450, 'https://ror.org/03rx9r010', 'en', 1, 'https://ror.org/03rx9r010 Carraway Methodist Medical Center'),
(2451, 'https://ror.org/024bsrp32', 'en', 1, 'https://ror.org/024bsrp32 Casa Colina Centers for Rehabilitation'),
(2452, 'https://ror.org/04x16yc34', 'no_lang_code', 1, 'https://ror.org/04x16yc34 Al Nahdha Hospital مستشفى النهضة'),
(2453, 'https://ror.org/00md77g41', 'it', 1, 'https://ror.org/00md77g41 Casa Sollievo della Sofferenza Home for Relief of the Suffering'),
(2454, 'https://ror.org/03b705z14', 'es', 1, 'https://ror.org/03b705z14 Hospital Vargas'),
(2455, 'https://ror.org/03tfy3c27', 'es', 1, 'https://ror.org/03tfy3c27 Hospital Vega Baja'),
(2456, 'https://ror.org/02bhk3j29', 'es', 1, 'https://ror.org/02bhk3j29 Hospital Virgen de la Concha'),
(2457, 'https://ror.org/00k49k182', 'es', 1, 'https://ror.org/00k49k182 Hospital Virgen de la Luz'),
(2458, 'https://ror.org/04rr42t68', 'nl', 1, 'https://ror.org/04rr42t68 Jeroen Bosch Ziekenhuis'),
(2459, 'https://ror.org/042asnw05', 'en', 1, 'https://ror.org/042asnw05 Castle Hill Hospital'),
(2460, 'https://ror.org/05n56ba96', 'en', 1, 'https://ror.org/05n56ba96 Latifa Hospital'),
(2461, 'https://ror.org/04y2hdd14', 'no_lang_code', 1, 'https://ror.org/04y2hdd14 Amiri Hospital المستشفى الأميري'),
(2462, 'https://ror.org/05kjeqc29', 'no_lang_code', 1, 'https://ror.org/05kjeqc29 Jahra Hospital مستشفى الجهراء'),
(2463, 'https://ror.org/00pg9d188', 'en', 1, 'https://ror.org/00pg9d188 Al Noor Hospitals'),
(2464, 'https://ror.org/03f8drh85', 'no_lang_code', 1, 'https://ror.org/03f8drh85 Haibara General Hospital 榛原総合病院');
INSERT INTO `rors` VALUES
(2465, 'https://ror.org/04ssfah06', 'es', 1, 'https://ror.org/04ssfah06 Hospital Virgen de los Lirios'),
(2466, 'https://ror.org/01yft1b10', 'en', 1, 'https://ror.org/01yft1b10 Catalyst Health Economics Consultants Ltd'),
(2467, 'https://ror.org/046wwv897', 'es', 1, 'https://ror.org/046wwv897 Hospital Virgen del Camino'),
(2468, 'https://ror.org/0488ndr53', 'en', 1, 'https://ror.org/0488ndr53 Hairmyres Hospital'),
(2469, 'https://ror.org/05peke140', 'es', 1, 'https://ror.org/05peke140 Hospital Virgen del Puerto'),
(2470, 'https://ror.org/035xbsb93', 'en', 1, 'https://ror.org/035xbsb93 Al-Sabah Hospital'),
(2471, 'https://ror.org/05mqksr19', 'en', 1, 'https://ror.org/05mqksr19 Catawba Valley Medical Center'),
(2472, 'https://ror.org/04hcg0q34', 'en', 1, 'https://ror.org/04hcg0q34 Alameda Health System'),
(2473, 'https://ror.org/04p7nde68', 'en', 1, 'https://ror.org/04p7nde68 Hakodate Central General Hospital 函館中央病院'),
(2474, 'https://ror.org/03dcdys28', 'en', 1, 'https://ror.org/03dcdys28 Alaska Department of Health and Social Services'),
(2475, 'https://ror.org/04nr0c858', 'es', 1, 'https://ror.org/04nr0c858 Hospital Vozandes'),
(2476, 'https://ror.org/03c8c9n80', 'en', 1, 'https://ror.org/03c8c9n80 Cathay General Hospital'),
(2477, 'https://ror.org/04faw9m73', 'sv', 1, 'https://ror.org/04faw9m73 Hallands sjukhus Halmstad'),
(2478, 'https://ror.org/03pshcc38', 'en', 1, 'https://ror.org/03pshcc38 Halton General Hospital'),
(2479, 'https://ror.org/00zbht122', 'es', 1, 'https://ror.org/00zbht122 Hospital Xeral Calde'),
(2480, 'https://ror.org/02bg8cb41', 'en', 1, 'https://ror.org/02bg8cb41 Alaska Native Medical Center'),
(2481, 'https://ror.org/01bgafn72', 'no_lang_code', 1, 'https://ror.org/01bgafn72 Hamad General Hospital'),
(2482, 'https://ror.org/02byvsq24', 'en', 1, 'https://ror.org/02byvsq24 Community Regional Medical Center'),
(2483, 'https://ror.org/05vtzqy31', 'en', 1, 'https://ror.org/05vtzqy31 Deaconess Hospital'),
(2484, 'https://ror.org/00h2bj464', 'en', 1, 'https://ror.org/00h2bj464 Deaconess Hospital'),
(2485, 'https://ror.org/05vczwc13', 'en', 1, 'https://ror.org/05vczwc13 Deaconess Hospital'),
(2486, 'https://ror.org/02zwb6n98', 'en', 1, 'https://ror.org/02zwb6n98 Hamad Medical Corporation'),
(2487, 'https://ror.org/0532h0d08', 'en', 1, 'https://ror.org/0532h0d08 Deaconess Hospital'),
(2488, 'https://ror.org/02wdkng16', 'en', 1, 'https://ror.org/02wdkng16 Catholic Health Association of the United States'),
(2489, 'https://ror.org/029es6637', 'en', 1, 'https://ror.org/029es6637 Alaska Native Tribal Health Consortium'),
(2490, 'https://ror.org/04w1m5n60', 'fr', 1, 'https://ror.org/04w1m5n60 Hôtel-Dieu de France'),
(2491, 'https://ror.org/01s7w1z60', 'fr', 1, 'https://ror.org/01s7w1z60 Hotel Dieu Hospital'),
(2492, 'https://ror.org/02p72h367', 'en', 1, 'https://ror.org/02p72h367 University of Cincinnati Medical Center'),
(2493, 'https://ror.org/023wqmm33', 'en', 1, 'https://ror.org/023wqmm33 DeKalb Medical Center'),
(2494, 'https://ror.org/049yfnz48', 'en', 1, 'https://ror.org/049yfnz48 Houston Medical Center'),
(2495, 'https://ror.org/028xtgx62', 'en', 1, 'https://ror.org/028xtgx62 Albert Schweitzer Hospital Hôpital albert-schweitzer'),
(2496, 'https://ror.org/05j7rz205', 'en', 1, 'https://ror.org/05j7rz205 Halifax Health Medical Center'),
(2497, 'https://ror.org/03pz1p187', 'en', 1, 'https://ror.org/03pz1p187 Alberta Health'),
(2498, 'https://ror.org/038vg5g56', 'en', 1, 'https://ror.org/038vg5g56 Delaware County Memorial Hospital'),
(2499, 'https://ror.org/007x9se63', 'en', 1, 'https://ror.org/007x9se63 Center for Devices and Radiological Health'),
(2500, 'https://ror.org/04n9z8z70', 'en', 1, 'https://ror.org/04n9z8z70 New Mexico VA Health Care System'),
(2501, 'https://ror.org/03e8ncw23', 'en', 1, 'https://ror.org/03e8ncw23 Gunma Prefectural Institute of Public Health and Environmental Sciences 群馬県衛生環境研究所'),
(2502, 'https://ror.org/04z61sd03', 'en', 1, 'https://ror.org/04z61sd03 Alder Hey Children''s Hospital'),
(2503, 'https://ror.org/01fxd7077', 'en', 1, 'https://ror.org/01fxd7077 Center for Health Care Law'),
(2504, 'https://ror.org/009z5t729', 'en', 1, 'https://ror.org/009z5t729 Cook Children''s Medical Center'),
(2505, 'https://ror.org/032af5232', 'no_lang_code', 1, 'https://ror.org/032af5232 Gweru Provincial Hospital'),
(2506, 'https://ror.org/029hept94', 'en', 1, 'https://ror.org/029hept94 Alexandra Hospital'),
(2507, 'https://ror.org/02f3b8e29', 'en', 1, 'https://ror.org/02f3b8e29 Alexandra Hospital 亚历山大医院'),
(2508, 'https://ror.org/027q9k466', 'en', 1, 'https://ror.org/027q9k466 Alexandra Hospital'),
(2509, 'https://ror.org/03q4p1y48', 'en', 1, 'https://ror.org/03q4p1y48 Haga Hospital HagaZiekenhuis'),
(2510, 'https://ror.org/03ks67450', 'en', 1, 'https://ror.org/03ks67450 Inova Alexandria Hospital'),
(2511, 'https://ror.org/015b6az38', 'en', 1, 'https://ror.org/015b6az38 Mackay Memorial Hospital 馬偕紀念醫院'),
(2512, 'https://ror.org/04zgvbn76', 'en', 1, 'https://ror.org/04zgvbn76 Guthrie Hospice'),
(2513, 'https://ror.org/02x1txb82', 'no_lang_code', 1, 'https://ror.org/02x1txb82 Hafez Hospital بیمارستان حافظ'),
(2514, 'https://ror.org/012wm7481', 'no_lang_code', 1, 'https://ror.org/012wm7481 Huadong Hospital 复旦大学附属华东医院'),
(2515, 'https://ror.org/0065kgn45', 'en', 1, 'https://ror.org/0065kgn45 Center for Studying Health System Change'),
(2516, 'https://ror.org/03ty7jy62', 'en', 1, 'https://ror.org/03ty7jy62 Alexian Brothers Medical Center'),
(2517, 'https://ror.org/02hyxwa22', 'en', 1, 'https://ror.org/02hyxwa22 Center for Urban Population Health'),
(2518, 'https://ror.org/05pp39346', 'en', 1, 'https://ror.org/05pp39346 Haifa Medical Center'),
(2519, 'https://ror.org/00q6wbs64', 'no_lang_code', 1, 'https://ror.org/00q6wbs64 Tianjin Huanhu Hospital 天津市环湖医院'),
(2520, 'https://ror.org/05p38yh32', 'en', 1, 'https://ror.org/05p38yh32 Hubei Cancer Hospital 湖北省肿瘤医院'),
(2521, 'https://ror.org/01g171x08', 'en', 1, 'https://ror.org/01g171x08 Alice Ho Miu Ling Nethersole Hospital 雅麗氏何妙齡那打素醫院'),
(2522, 'https://ror.org/03yegf956', 'en', 1, 'https://ror.org/03yegf956 Alice Springs Hospital'),
(2523, 'https://ror.org/023cara48', 'en', 1, 'https://ror.org/023cara48 Center for Epidemiology and Animal Health'),
(2524, 'https://ror.org/013x5cp73', 'en', 1, 'https://ror.org/013x5cp73 Johns Hopkins All Children''s Hospital'),
(2525, 'https://ror.org/05q8mwj81', 'en', 1, 'https://ror.org/05q8mwj81 Hamilton General Hospital'),
(2526, 'https://ror.org/03nrgvp52', 'en', 1, 'https://ror.org/03nrgvp52 Centinela Hospital Medical Center'),
(2527, 'https://ror.org/01m46xf39', 'en', 1, 'https://ror.org/01m46xf39 All India Institute of Hygiene and Public Health अखिल भारतीय स्वास्थ्य र्विज्ञान एवं जन स्वास्थ्य संस्थान'),
(2528, 'https://ror.org/015rc4h95', 'en', 1, 'https://ror.org/015rc4h95 Hamanomachi Hospital 浜の町病院'),
(2529, 'https://ror.org/005r9p256', 'en', 1, 'https://ror.org/005r9p256 Royal Derby Hospital'),
(2530, 'https://ror.org/04vhsg885', 'en', 1, 'https://ror.org/04vhsg885 Allama Iqbal Medical College علامہ اقبال میڈیکل کالج'),
(2531, 'https://ror.org/02gy6qp39', 'en', 1, 'https://ror.org/02gy6qp39 Allegheny General Hospital'),
(2532, 'https://ror.org/03mccxv57', 'en', 1, 'https://ror.org/03mccxv57 Derbyshire Children''s Hospital'),
(2533, 'https://ror.org/02vtstx21', 'en', 1, 'https://ror.org/02vtstx21 Allen Hospital'),
(2534, 'https://ror.org/03h4fx826', 'en', 1, 'https://ror.org/03h4fx826 Lehigh Valley Hospital'),
(2535, 'https://ror.org/03950pc16', 'en', 1, 'https://ror.org/03950pc16 Allergy and Asthma Medical Group and Research Center'),
(2536, 'https://ror.org/00v5h4y49', 'en', 1, 'https://ror.org/00v5h4y49 Derriford Hospital'),
(2537, 'https://ror.org/05jg8yp15', 'en', 1, 'https://ror.org/05jg8yp15 Hammersmith Hospital'),
(2538, 'https://ror.org/038fqcc39', 'en', 1, 'https://ror.org/038fqcc39 UPMC Hamot'),
(2539, 'https://ror.org/02gj19t78', 'en', 1, 'https://ror.org/02gj19t78 Humber River Regional Hospital'),
(2540, 'https://ror.org/01jjm6w53', 'en', 1, 'https://ror.org/01jjm6w53 Banner Desert Medical Center'),
(2541, 'https://ror.org/037a76178', 'en', 1, 'https://ror.org/037a76178 Handa City Hospital 半田市立半田病院'),
(2542, 'https://ror.org/04esegk75', 'en', 1, 'https://ror.org/04esegk75 Allina Health'),
(2543, 'https://ror.org/01t3emk15', 'en', 1, 'https://ror.org/01t3emk15 Central Chest Institute of Thailand'),
(2544, 'https://ror.org/03w37n116', 'en', 1, 'https://ror.org/03w37n116 Alta Bates Summit Medical Center'),
(2545, 'https://ror.org/05xxmnm27', 'en', 1, 'https://ror.org/05xxmnm27 Altnagelvin Area Hospital'),
(2546, 'https://ror.org/04fp78s33', 'en', 1, 'https://ror.org/04fp78s33 Hunter Holmes McGuire VA Medical Center'),
(2547, 'https://ror.org/05pwsw714', 'en', 1, 'https://ror.org/05pwsw714 Hangzhou First People''s Hospital 杭州市第一人民医院'),
(2548, 'https://ror.org/055redd10', 'it', 1, 'https://ror.org/055redd10 Azienda Ospedaliera di Desio e Vimercate'),
(2549, 'https://ror.org/03mh75s52', 'en', 1, 'https://ror.org/03mh75s52 Hangzhou Red Cross Hospital 杭州市红十字会医院'),
(2550, 'https://ror.org/00g1rc256', 'en', 1, 'https://ror.org/00g1rc256 Central DuPage Hospital'),
(2551, 'https://ror.org/02xgzjz11', 'en', 1, 'https://ror.org/02xgzjz11 Hanil General Hospital 한전병원'),
(2552, 'https://ror.org/0020x6414', 'en', 1, 'https://ror.org/0020x6414 Hunter Medical Research Institute'),
(2553, 'https://ror.org/00yj3jn96', 'en', 1, 'https://ror.org/00yj3jn96 Hunterdon Medical Center'),
(2554, 'https://ror.org/01qh83x04', 'sv', 1, 'https://ror.org/01qh83x04 Västmanlands sjukhus Västerås'),
(2555, 'https://ror.org/02kwcpg86', 'en', 1, 'https://ror.org/02kwcpg86 Karlstad Central Hospital'),
(2556, 'https://ror.org/044r51149', 'en', 1, 'https://ror.org/044r51149 Hanoi School Of Public Health Trường Đại học Y tế công cộng'),
(2557, 'https://ror.org/02g2pz956', 'en', 1, 'https://ror.org/02g2pz956 Amager Hospital'),
(2558, 'https://ror.org/0163qhr63', 'en', 1, 'https://ror.org/0163qhr63 Hanusch Hospital Hanusch-Krankenhaus'),
(2559, 'https://ror.org/01cgbsh11', 'en', 1, 'https://ror.org/01cgbsh11 Hutt Hospital'),
(2560, 'https://ror.org/03zsbd109', 'en', 1, 'https://ror.org/03zsbd109 Hanwa Memorial Hospital 阪和記念病院'),
(2561, 'https://ror.org/03z2mza16', 'en', 1, 'https://ror.org/03z2mza16 Dewsbury and District Hospital'),
(2562, 'https://ror.org/03mdzf107', 'en', 1, 'https://ror.org/03mdzf107 Amala Institute of Medical Sciences അമല ഇൻസ്റ്റിട്ട്യൂട്ട് ഓഫ് മെഡിക്കൽ സയൻസസ്'),
(2563, 'https://ror.org/02paek818', 'en', 1, 'https://ror.org/02paek818 Hutzel Women''s Hospital'),
(2564, 'https://ror.org/05mdb5j94', 'en', 1, 'https://ror.org/05mdb5j94 MedStar Harbor Hospital'),
(2565, 'https://ror.org/01p8da469', 'it', 1, 'https://ror.org/01p8da469 Ospedale Amedeo di Savoia'),
(2566, 'https://ror.org/03pjj1n42', 'en', 1, 'https://ror.org/03pjj1n42 Dhahran Health Center'),
(2567, 'https://ror.org/00w7vnc45', 'en', 1, 'https://ror.org/00w7vnc45 America''s Health Insurance Plans'),
(2568, 'https://ror.org/0150ewf57', 'en', 1, 'https://ror.org/0150ewf57 Dhaka Medical College and Hospital ঢাকা মেডিকেল কলেজ'),
(2569, 'https://ror.org/04fwa4t58', 'en', 1, 'https://ror.org/04fwa4t58 Harefield Hospital'),
(2570, 'https://ror.org/03e36d037', 'es', 1, 'https://ror.org/03e36d037 ABC Medical Center Centro Médico ABC'),
(2571, 'https://ror.org/01czx1v82', 'en', 1, 'https://ror.org/01czx1v82 Huzhou Central Hospital 湖州市中心医院'),
(2572, 'https://ror.org/04fv66053', 'en', 1, 'https://ror.org/04fv66053 American Health Care Association'),
(2573, 'https://ror.org/04tpqnr72', 'en', 1, 'https://ror.org/04tpqnr72 Harold Wood Hospital'),
(2574, 'https://ror.org/00shmxd32', 'en', 1, 'https://ror.org/00shmxd32 PBMA''s H.V. Desai Eye Hospital'),
(2575, 'https://ror.org/02jvh3a15', 'en', 1, 'https://ror.org/02jvh3a15 Diakonhjemmet Hospital'),
(2576, 'https://ror.org/04m8z4n60', 'en', 1, 'https://ror.org/04m8z4n60 Harris Health System'),
(2577, 'https://ror.org/03b2b5383', 'en', 1, 'https://ror.org/03b2b5383 Diana Princess of Wales Hospital'),
(2578, 'https://ror.org/01as10d06', 'en', 1, 'https://ror.org/01as10d06 Harrisburg Hospital'),
(2579, 'https://ror.org/05wfna922', 'tr', 1, 'https://ror.org/05wfna922 American Hospital Amerikan Hastanesi'),
(2580, 'https://ror.org/04z9zma62', 'en', 1, 'https://ror.org/04z9zma62 American Hospital Association'),
(2581, 'https://ror.org/00nrgkr20', 'it', 1, 'https://ror.org/00nrgkr20 Cattinara Hospital Ospedale di Cattinara'),
(2582, 'https://ror.org/001be0c19', 'en', 1, 'https://ror.org/001be0c19 Centennial Medical Center'),
(2583, 'https://ror.org/04e8mq383', 'en', 1, 'https://ror.org/04e8mq383 Hyogo Prefectural Amagasaki General Medical Center 兵庫県立尼崎総合医療センター'),
(2584, 'https://ror.org/04bghze60', 'tr', 1, 'https://ror.org/04bghze60 Dışkapı Yıldırım Beyazıt Eğitim ve Araştırma Hastanesi'),
(2585, 'https://ror.org/042ck3w97', 'en', 1, 'https://ror.org/042ck3w97 Hyogo Ion Beam Medical Center 兵庫県立粒子線医療センター'),
(2586, 'https://ror.org/003sw8164', 'en', 1, 'https://ror.org/003sw8164 Inland Hospital Sykehuset Innlandet'),
(2587, 'https://ror.org/00gw6hy83', 'en', 1, 'https://ror.org/00gw6hy83 Rotherham General Hospital'),
(2588, 'https://ror.org/03bg2rq25', 'en', 1, 'https://ror.org/03bg2rq25 American Public Health Association'),
(2589, 'https://ror.org/01pjjvq50', 'en', 1, 'https://ror.org/01pjjvq50 Eastbourne District General Hospital'),
(2590, 'https://ror.org/00tb6zr84', 'en', 1, 'https://ror.org/00tb6zr84 American School Health Association'),
(2591, 'https://ror.org/00w7dj406', 'en', 1, 'https://ror.org/00w7dj406 American Society of Health-System Pharmacists'),
(2592, 'https://ror.org/05ahq3q81', 'en', 1, 'https://ror.org/05ahq3q81 Amersham Hospital'),
(2593, 'https://ror.org/02jwg2f21', 'en', 1, 'https://ror.org/02jwg2f21 Hammerfest Hospital Hammerfest Sykehus'),
(2594, 'https://ror.org/05wqbqy84', 'en', 1, 'https://ror.org/05wqbqy84 Aminu Kano Teaching Hospital'),
(2595, 'https://ror.org/00w1fsg08', 'en', 1, 'https://ror.org/00w1fsg08 Hyogo Prefectural Awaji Medical Center 兵庫県立淡路医療センター'),
(2596, 'https://ror.org/03044am22', 'en', 1, 'https://ror.org/03044am22 Harrogate District Hospital'),
(2597, 'https://ror.org/01a4gqp27', 'en', 1, 'https://ror.org/01a4gqp27 Harry S. Truman Memorial Veterans'' Hospital'),
(2598, 'https://ror.org/04xhnr923', 'no_lang_code', 1, 'https://ror.org/04xhnr923 Hyogo Prefectural Nishinomiya Hospital 兵庫県立西宮病院'),
(2599, 'https://ror.org/058p1kn93', 'en', 1, 'https://ror.org/058p1kn93 VA Long Beach Healthcare System'),
(2600, 'https://ror.org/050fz5z96', 'en', 1, 'https://ror.org/050fz5z96 Washington DC VA Medical Center'),
(2601, 'https://ror.org/035khf156', 'en', 1, 'https://ror.org/035khf156 Hyogo Social Welfare Corporation 兵庫県立リハビリテーション中央病院'),
(2602, 'https://ror.org/01z9vrt66', 'en', 1, 'https://ror.org/01z9vrt66 Okazaki City Hospital 岡崎市民病院'),
(2603, 'https://ror.org/03y1rev40', 'en', 1, 'https://ror.org/03y1rev40 Hyvinkää Hospital'),
(2604, 'https://ror.org/03t3qg659', 'en', 1, 'https://ror.org/03t3qg659 Substance Abuse and Mental Health Services Administration'),
(2605, 'https://ror.org/01fm87m50', 'en', 1, 'https://ror.org/01fm87m50 Rambam Health Care Campus רמב"ם - הקריה הרפואית לבריאות האדם‎ مشفى رمبام'),
(2606, 'https://ror.org/00jjeh629', 'en', 1, 'https://ror.org/00jjeh629 Harvard–MIT Division of Health Sciences and Technology'),
(2607, 'https://ror.org/012bh1w56', 'fr', 1, 'https://ror.org/012bh1w56 Hôpital 20 Août'),
(2608, 'https://ror.org/01ew49p77', 'en', 1, 'https://ror.org/01ew49p77 Malcom Randall VA Medical Center'),
(2609, 'https://ror.org/02fkdpc07', 'fi', 1, 'https://ror.org/02fkdpc07 Kanta-Hämeen Keskussairaala'),
(2610, 'https://ror.org/05wrpbp17', 'en', 1, 'https://ror.org/05wrpbp17 Andalusian School of Public Health Escuela Andaluza de Salud Pública'),
(2611, 'https://ror.org/03g8yqb46', 'fi', 1, 'https://ror.org/03g8yqb46 Keski-Pohjanmaan keskussairaala'),
(2612, 'https://ror.org/04gnvnd68', 'en', 1, 'https://ror.org/04gnvnd68 AnMed Health Medical Center'),
(2613, 'https://ror.org/00w81q081', 'fr', 1, 'https://ror.org/00w81q081 Hôpital Albert Calmette'),
(2614, 'https://ror.org/05kfvx519', 'fr', 1, 'https://ror.org/05kfvx519 Hôpital Albert Michallon'),
(2615, 'https://ror.org/008a4de11', 'en', 1, 'https://ror.org/008a4de11 Manhattan Eye, Ear and Throat Hospital'),
(2616, 'https://ror.org/05dzsmt79', 'no', 1, 'https://ror.org/05dzsmt79 Helse Førde'),
(2617, 'https://ror.org/04sq8k219', 'en', 1, 'https://ror.org/04sq8k219 University of Louisville Hospital'),
(2618, 'https://ror.org/043yy3r57', 'en', 1, 'https://ror.org/043yy3r57 Central India Institute of Medical Sciences'),
(2619, 'https://ror.org/010q6ek40', 'tr', 1, 'https://ror.org/010q6ek40 Haseki Eğitim ve Araştırma Hastanesi'),
(2620, 'https://ror.org/0511th722', 'fr', 1, 'https://ror.org/0511th722 Hôpital Albert-Chenevier'),
(2621, 'https://ror.org/03j6rvb05', 'fr', 1, 'https://ror.org/03j6rvb05 Hôpital Ambroise-Paré'),
(2622, 'https://ror.org/00nebyg34', 'en', 1, 'https://ror.org/00nebyg34 Central Maine Medical Center'),
(2623, 'https://ror.org/01d3gh658', 'en', 1, 'https://ror.org/01d3gh658 Centraal Militair Hospitaal Central Military Hospital'),
(2624, 'https://ror.org/02hy2mb20', 'no_lang_code', 1, 'https://ror.org/02hy2mb20 De Gezondheidsdienst voor Dieren'),
(2625, 'https://ror.org/0176x9269', 'no_lang_code', 1, 'https://ror.org/0176x9269 Hatyai Hospital โรงพยาบาลหาดใหญ่'),
(2626, 'https://ror.org/01zbeej63', 'fi', 1, 'https://ror.org/01zbeej63 Keski-Satakunnan Terveydenhuollon kuntayhtymä'),
(2627, 'https://ror.org/02fsxgh46', 'fr', 1, 'https://ror.org/02fsxgh46 Hôpital l''Archet'),
(2628, 'https://ror.org/05jb57h29', 'en', 1, 'https://ror.org/05jb57h29 Hatanpaan Sairaala Hatanpää Hospital'),
(2629, 'https://ror.org/0353q6p88', 'en', 1, 'https://ror.org/0353q6p88 Sydney South West Area Health Service'),
(2630, 'https://ror.org/01shhkn05', 'en', 1, 'https://ror.org/01shhkn05 East Orange VA Medical Center'),
(2631, 'https://ror.org/01n1j0f20', 'fr', 1, 'https://ror.org/01n1j0f20 Hôpital Aristide Le Dantec'),
(2632, 'https://ror.org/02dcp1550', 'en', 1, 'https://ror.org/02dcp1550 Central Texas Veterans Health Care System'),
(2633, 'https://ror.org/05c06ww48', 'no_lang_code', 1, 'https://ror.org/05c06ww48 Anjo Kosei Hospital 安城更生病院'),
(2634, 'https://ror.org/03n6vs369', 'fr', 1, 'https://ror.org/03n6vs369 Hôpital Avicenne'),
(2635, 'https://ror.org/05dsgrz38', 'en', 1, 'https://ror.org/05dsgrz38 Hawaii Permanente Medical Group'),
(2636, 'https://ror.org/032p0xe91', 'no', 1, 'https://ror.org/032p0xe91 Privatsykehuset Haugesund'),
(2637, 'https://ror.org/00kmzyw28', 'tr', 1, 'https://ror.org/00kmzyw28 Ankara Atatürk Eğitim ve Araştırma Hastanesi'),
(2638, 'https://ror.org/00nsz0a92', 'en', 1, 'https://ror.org/00nsz0a92 Omaha VA Medical Center'),
(2639, 'https://ror.org/01v00e311', 'en', 1, 'https://ror.org/01v00e311 Hayashi Eye Hospital'),
(2640, 'https://ror.org/01pym8r61', 'en', 1, 'https://ror.org/01pym8r61 Centre for Research in Medical Entomology'),
(2641, 'https://ror.org/03vpd6e34', 'en', 1, 'https://ror.org/03vpd6e34 Hayatabad Medical Complex'),
(2642, 'https://ror.org/02mek6v69', 'fr', 1, 'https://ror.org/02mek6v69 Hôpital Bonnet'),
(2643, 'https://ror.org/03pdc2j75', 'tr', 1, 'https://ror.org/03pdc2j75 Haydarpaşa Numune Eğitim ve Araştırma Hastanesi'),
(2644, 'https://ror.org/013qdbe28', 'tr', 1, 'https://ror.org/013qdbe28 Ankara Numune Eğitim ve Araştırma Hastanesi'),
(2645, 'https://ror.org/04j0szy54', 'fr', 1, 'https://ror.org/04j0szy54 Hôpital Boucicaut'),
(2646, 'https://ror.org/01r05t925', 'tr', 1, 'https://ror.org/01r05t925 Ankara Onkoloji Eğitim ve Araştırma Hastanesi'),
(2647, 'https://ror.org/020rzx487', 'en', 1, 'https://ror.org/020rzx487 Sheba Medical Center'),
(2648, 'https://ror.org/00hwsxp30', 'tr', 1, 'https://ror.org/00hwsxp30 Ankara Fizik Tedavi ve Rehabilitasyon Eğitim ve Araştırma Hastanesi'),
(2649, 'https://ror.org/034dczg46', 'en', 1, 'https://ror.org/034dczg46 Chandka Medical College'),
(2650, 'https://ror.org/054e9ag92', 'en', 1, 'https://ror.org/054e9ag92 Chang Gung Children''s Hospital'),
(2651, 'https://ror.org/04g3stk86', 'sv', 1, 'https://ror.org/04g3stk86 Länssjukhuset i Kalmar'),
(2652, 'https://ror.org/018txrr13', 'en', 1, 'https://ror.org/018txrr13 VA Ann Arbor Healthcare System'),
(2653, 'https://ror.org/040m56689', 'hu', 1, 'https://ror.org/040m56689 Baranya Megyei Kórház'),
(2654, 'https://ror.org/045d4f586', 'tr', 1, 'https://ror.org/045d4f586 Ulucanlar Göz Eğitim ve Araştırma Hastanesi'),
(2655, 'https://ror.org/024xyyq03', 'en', 1, 'https://ror.org/024xyyq03 Nashville VA Medical Center'),
(2656, 'https://ror.org/01xqed412', 'en', 1, 'https://ror.org/01xqed412 Haywood Community Hospital'),
(2657, 'https://ror.org/03a6zw892', 'en', 1, 'https://ror.org/03a6zw892 Lurie Children''s Hospital'),
(2658, 'https://ror.org/0283k4z65', 'en', 1, 'https://ror.org/0283k4z65 Anne Arundel Medical Center'),
(2659, 'https://ror.org/0103dxn66', 'no_lang_code', 1, 'https://ror.org/0103dxn66 Shanghai Changzheng Hospital'),
(2660, 'https://ror.org/03gzyz068', 'it', 1, 'https://ror.org/03gzyz068 Ospedale Annunziata di Cosenza'),
(2661, 'https://ror.org/00ftebr67', 'en', 1, 'https://ror.org/00ftebr67 Wesley Medical Center'),
(2662, 'https://ror.org/02jygs973', 'en', 1, 'https://ror.org/02jygs973 Changes in Health Care Financing & Organization'),
(2663, 'https://ror.org/05d9dtr71', 'en', 1, 'https://ror.org/05d9dtr71 Changhua Christian Hospital'),
(2664, 'https://ror.org/039se3q37', 'en', 1, 'https://ror.org/039se3q37 County Hospital'),
(2665, 'https://ror.org/00ng6k310', 'en', 1, 'https://ror.org/00ng6k310 Chapel Allerton Hospital'),
(2666, 'https://ror.org/01ppcnz44', 'tr', 1, 'https://ror.org/01ppcnz44 Antalya Eğitim ve Araştırma Hastanesi'),
(2667, 'https://ror.org/02gcp3110', 'en', 1, 'https://ror.org/02gcp3110 Charing Cross Hospital'),
(2668, 'https://ror.org/000vg5909', 'en', 1, 'https://ror.org/000vg5909 Health & Medical Publishing Group'),
(2669, 'https://ror.org/03j2vsq41', 'en', 1, 'https://ror.org/03j2vsq41 Beijing Great Wall Hospital 北京市长城医院'),
(2670, 'https://ror.org/03am3jt82', 'sv', 1, 'https://ror.org/03am3jt82 Helsingborgs lasarett'),
(2671, 'https://ror.org/00bq8v746', 'no_lang_code', 1, 'https://ror.org/00bq8v746 Aomori Prefectural Central Hospital 青森県立中央病院'),
(2672, 'https://ror.org/052dmyg58', 'en', 1, 'https://ror.org/052dmyg58 Greenville Memorial Hospital'),
(2673, 'https://ror.org/02f6ghw27', 'fr', 1, 'https://ror.org/02f6ghw27 Hôpital Charles-Nicolle'),
(2674, 'https://ror.org/00fc19b96', 'en', 1, 'https://ror.org/00fc19b96 Aomori Rosai Hospital 青森労災病院'),
(2675, 'https://ror.org/02vfy4r65', 'en', 1, 'https://ror.org/02vfy4r65 Charleston Area Medical Center'),
(2676, 'https://ror.org/01ng1yh19', 'en', 1, 'https://ror.org/01ng1yh19 Charlie Norwood VA Medical Center'),
(2677, 'https://ror.org/02e5pan03', 'en', 1, 'https://ror.org/02e5pan03 Charlton Memorial Hospital'),
(2678, 'https://ror.org/04cs55d24', 'no_lang_code', 1, 'https://ror.org/04cs55d24 Charoenkrung Pracharak Hospital โรงพยาบาลเจริญกรุงประชารักษ์'),
(2679, 'https://ror.org/04j19h351', 'en', 1, 'https://ror.org/04j19h351 Chase Farm Hospital'),
(2680, 'https://ror.org/01wxddc07', 'en', 1, 'https://ror.org/01wxddc07 Katsushika Medical Center 葛飾医療センタ'),
(2681, 'https://ror.org/02gj58768', 'en', 1, 'https://ror.org/02gj58768 Apollo Gleneagles Hospitals'),
(2682, 'https://ror.org/01dm04760', 'en', 1, 'https://ror.org/01dm04760 Lexington VA Health Care System'),
(2683, 'https://ror.org/05vxnmp88', 'en', 1, 'https://ror.org/05vxnmp88 Cheil General Hospital and Women''s Healthcare Center'),
(2684, 'https://ror.org/02ew45630', 'en', 1, 'https://ror.org/02ew45630 Apollo Hospitals'),
(2685, 'https://ror.org/01xtpc441', 'en', 1, 'https://ror.org/01xtpc441 Northport VA Medical Center'),
(2686, 'https://ror.org/05xdd0k85', 'en', 1, 'https://ror.org/05xdd0k85 Cheltenham General Hospital'),
(2687, 'https://ror.org/00kmzgn35', 'en', 1, 'https://ror.org/00kmzgn35 Hawke''s Bay Hospital'),
(2688, 'https://ror.org/05eqycp84', 'en', 1, 'https://ror.org/05eqycp84 Cheng Ching Hospital 澄清湖医院'),
(2689, 'https://ror.org/00mz0c648', 'en', 1, 'https://ror.org/00mz0c648 Boise VA Medical Center'),
(2690, 'https://ror.org/014f77s28', 'en', 1, 'https://ror.org/014f77s28 Cheng Hsin General Hospital'),
(2691, 'https://ror.org/000vjzq57', 'en', 1, 'https://ror.org/000vjzq57 Memphis VA Medical Center'),
(2692, 'https://ror.org/045r80n66', 'en', 1, 'https://ror.org/045r80n66 Cincinnati VA Medical Center'),
(2693, 'https://ror.org/050mdr969', 'en', 1, 'https://ror.org/050mdr969 Kansas City VA Medical Center'),
(2694, 'https://ror.org/05k71ja87', 'en', 1, 'https://ror.org/05k71ja87 Statistics Canada Statistique Canada'),
(2695, 'https://ror.org/02bzkv281', 'en', 1, 'https://ror.org/02bzkv281 Chengde Medical University 承德医学院'),
(2696, 'https://ror.org/05rfh1r09', 'en', 1, 'https://ror.org/05rfh1r09 Aquatic Animal Health Research Laboratory'),
(2697, 'https://ror.org/01bk73674', 'en', 1, 'https://ror.org/01bk73674 Chengdu Military General Hospital 中国人民解放军成都军区总医院'),
(2698, 'https://ror.org/043qmbk61', 'en', 1, 'https://ror.org/043qmbk61 Arbor Research Collaborative for Health'),
(2699, 'https://ror.org/0396v4y86', 'fr', 1, 'https://ror.org/0396v4y86 Hôpital Louis Pradel'),
(2700, 'https://ror.org/02g1bg244', 'en', 1, 'https://ror.org/02g1bg244 Cheongju St. Mary''s Hospital 청주 성모 병원'),
(2701, 'https://ror.org/0403w5x31', 'en', 1, 'https://ror.org/0403w5x31 Guglielmo da Saliceto Hospital'),
(2702, 'https://ror.org/02qvqb543', 'no_lang_code', 1, 'https://ror.org/02qvqb543 Aretaeio Hospital'),
(2703, 'https://ror.org/00swtwf35', 'en', 1, 'https://ror.org/00swtwf35 Chest Diseases Hospital المستشفى الصدري'),
(2704, 'https://ror.org/010md9d18', 'en', 1, 'https://ror.org/010md9d18 Oklahoma City VA Medical Center'),
(2705, 'https://ror.org/05fkq4848', 'fr', 1, 'https://ror.org/05fkq4848 Hôpital Civil, Strasbourg'),
(2706, 'https://ror.org/02wxcj895', 'en', 1, 'https://ror.org/02wxcj895 Chesterfield Royal Hospital'),
(2707, 'https://ror.org/00dt08z19', 'en', 1, 'https://ror.org/00dt08z19 Argyll and Bute Hospital'),
(2708, 'https://ror.org/04t23pb41', 'fr', 1, 'https://ror.org/04t23pb41 Hôpital Civil de Charleroi'),
(2709, 'https://ror.org/01smpj292', 'en', 1, 'https://ror.org/01smpj292 Arizona Department of Health Services'),
(2710, 'https://ror.org/02nren818', 'en', 1, 'https://ror.org/02nren818 Chestnut Hill Hospital'),
(2711, 'https://ror.org/02g02rq35', 'en', 1, 'https://ror.org/02g02rq35 Centers for Medicare and Medicaid Services'),
(2712, 'https://ror.org/02y2htg06', 'en', 1, 'https://ror.org/02y2htg06 Chi Mei Medical Center'),
(2713, 'https://ror.org/007xad319', 'en', 1, 'https://ror.org/007xad319 Gezondheidsraad The Health Council of the Netherlands'),
(2714, 'https://ror.org/040qrra89', 'en', 1, 'https://ror.org/040qrra89 G.V. (Sonny) Montgomery VA Medical Center'),
(2715, 'https://ror.org/054p2n359', 'en', 1, 'https://ror.org/054p2n359 Arkansas Department of Health'),
(2716, 'https://ror.org/055epge17', 'en', 1, 'https://ror.org/055epge17 Arkansas Foundation for Medical Care'),
(2717, 'https://ror.org/03nzj6y61', 'en', 1, 'https://ror.org/03nzj6y61 Health Net'),
(2718, 'https://ror.org/05n5drh21', 'en', 1, 'https://ror.org/05n5drh21 George E. Wahlen Department of VA Medical Center'),
(2719, 'https://ror.org/017m05e51', 'en', 1, 'https://ror.org/017m05e51 Health Policy Alternatives, Inc.'),
(2720, 'https://ror.org/049v7zy31', 'en', 1, 'https://ror.org/049v7zy31 Chiba Rosai Hospital 千葉労災病院'),
(2721, 'https://ror.org/052qqbc08', 'en', 1, 'https://ror.org/052qqbc08 Michael E. DeBakey VA Medical Center'),
(2722, 'https://ror.org/02wf9yg07', 'en', 1, 'https://ror.org/02wf9yg07 Chidicon Medical Center'),
(2723, 'https://ror.org/01xkzjp97', 'en', 1, 'https://ror.org/01xkzjp97 Health Promotion Board 新加坡保健促进局'),
(2724, 'https://ror.org/04zgkpa58', 'en', 1, 'https://ror.org/04zgkpa58 Health Protection Scotland'),
(2725, 'https://ror.org/03a23ch04', 'en', 1, 'https://ror.org/03a23ch04 Health Protection Surveillance Centre Lárionad Faire um Chosaint Sláinte'),
(2726, 'https://ror.org/02q0qx558', 'en', 1, 'https://ror.org/02q0qx558 Health Resources Unlimited'),
(2727, 'https://ror.org/045g3sx57', 'en', 1, 'https://ror.org/045g3sx57 Armed Forces Capital Hospital 國軍首都病院 국군수도병원'),
(2728, 'https://ror.org/02ybkn114', 'en', 1, 'https://ror.org/02ybkn114 Health Sciences Authority Penguasa Sains Kesihatan'),
(2729, 'https://ror.org/009szpe27', 'en', 1, 'https://ror.org/009szpe27 Armed Forces Health Surveillance Center'),
(2730, 'https://ror.org/046gme853', 'en', 1, 'https://ror.org/046gme853 Dandenong Hospital'),
(2731, 'https://ror.org/01zd7yk57', 'en', 1, 'https://ror.org/01zd7yk57 Louisville VA Medical Center'),
(2732, 'https://ror.org/03qjk6p58', 'en', 1, 'https://ror.org/03qjk6p58 Dayton VA Medical Center'),
(2733, 'https://ror.org/041m0cc93', 'en', 1, 'https://ror.org/041m0cc93 Providence VA Medical Center'),
(2734, 'https://ror.org/03ssyyt85', 'en', 1, 'https://ror.org/03ssyyt85 Ottawa County Health Department'),
(2735, 'https://ror.org/0176arq92', 'en', 1, 'https://ror.org/0176arq92 Milwaukee VA Medical Center'),
(2736, 'https://ror.org/01jn2rz36', 'fr', 1, 'https://ror.org/01jn2rz36 Hôpital de Jolimont'),
(2737, 'https://ror.org/05g6w6j42', 'en', 1, 'https://ror.org/05g6w6j42 Armed Forces Medical College ആംഡ് ഫോഴ്സസ് മെഡിക്കൽ കോളേജ്'),
(2738, 'https://ror.org/034c6s521', 'en', 1, 'https://ror.org/034c6s521 Amarillo VA Health Care System'),
(2739, 'https://ror.org/01p01k535', 'en', 1, 'https://ror.org/01p01k535 Taoyuan Armed Forces General Hospital 桃园武装部队总医院'),
(2740, 'https://ror.org/02q1nnh04', 'en', 1, 'https://ror.org/02q1nnh04 St. Cloud VA Health Care System'),
(2741, 'https://ror.org/059kfmf89', 'fr', 1, 'https://ror.org/059kfmf89 Centre hospitalier régional de la Citadelle'),
(2742, 'https://ror.org/01s5r6w32', 'en', 1, 'https://ror.org/01s5r6w32 Central Arkansas Veterans Healthcare System'),
(2743, 'https://ror.org/03cfvmk82', 'en', 1, 'https://ror.org/03cfvmk82 VA Sierra Nevada Health Care System'),
(2744, 'https://ror.org/02hpatg29', 'en', 1, 'https://ror.org/02hpatg29 Fukuoka University Tsukushi Hospital 福岡大学筑紫病院'),
(2745, 'https://ror.org/00ky3az31', 'en', 1, 'https://ror.org/00ky3az31 VA Puget Sound Health Care System'),
(2746, 'https://ror.org/05x8jna23', 'fr', 1, 'https://ror.org/05x8jna23 Hôpital de La Grave'),
(2747, 'https://ror.org/03w0kj141', 'en', 1, 'https://ror.org/03w0kj141 Army Medical College'),
(2748, 'https://ror.org/02x0wmd77', 'en', 1, 'https://ror.org/02x0wmd77 St. John’s Health Sciences Centre'),
(2749, 'https://ror.org/00xb4cb83', 'en', 1, 'https://ror.org/00xb4cb83 Southern Arizona VA Health Care System'),
(2750, 'https://ror.org/03s5r4e84', 'en', 1, 'https://ror.org/03s5r4e84 VA NY Harbor Healthcare System'),
(2751, 'https://ror.org/000rs7940', 'fr', 1, 'https://ror.org/000rs7940 Hôpital de la Providence'),
(2752, 'https://ror.org/00paq4p43', 'en', 1, 'https://ror.org/00paq4p43 Bay Pines VA Healthcare System'),
(2753, 'https://ror.org/02a37xs76', 'en', 1, 'https://ror.org/02a37xs76 Health Services Academy'),
(2754, 'https://ror.org/04qmkfe11', 'en', 1, 'https://ror.org/04qmkfe11 VA St. Louis Health Care System'),
(2755, 'https://ror.org/05ts0bd12', 'en', 1, 'https://ror.org/05ts0bd12 VA Northern California Health Care System'),
(2756, 'https://ror.org/04dms0022', 'fr', 1, 'https://ror.org/04dms0022 Hôpital de la Tour'),
(2757, 'https://ror.org/00we60833', 'en', 1, 'https://ror.org/00we60833 Women''s & Children''s Health Research Institute'),
(2758, 'https://ror.org/02s7fkk92', 'es', 1, 'https://ror.org/02s7fkk92 Hospital Arnau de Vilanova'),
(2759, 'https://ror.org/03k8anr87', 'en', 1, 'https://ror.org/03k8anr87 Health South Rehabilitation Hospital'),
(2760, 'https://ror.org/0086ms749', 'en', 1, 'https://ror.org/0086ms749 Arnold Palmer Hospital for Children'),
(2761, 'https://ror.org/01x69an44', 'en', 1, 'https://ror.org/01x69an44 Children''s & Women''s Health Centre of British Columbia'),
(2762, 'https://ror.org/00jc57298', 'en', 1, 'https://ror.org/00jc57298 Central Baptist Hospital'),
(2763, 'https://ror.org/04sx7v519', 'fr', 1, 'https://ror.org/04sx7v519 Hôtel-Dieu de Lyon'),
(2764, 'https://ror.org/0291hsm26', 'en', 1, 'https://ror.org/0291hsm26 Asahikawa City Hospital 市立旭川病院'),
(2765, 'https://ror.org/05myvb614', 'en', 1, 'https://ror.org/05myvb614 Miami VA Healthcare System'),
(2766, 'https://ror.org/04vnz0695', 'no_lang_code', 1, 'https://ror.org/04vnz0695 Asahikawa Kosei Hospital 旭川厚生病院'),
(2767, 'https://ror.org/01x5yfk91', 'en', 1, 'https://ror.org/01x5yfk91 HealthONE Spalding Rehabilitation Hospital'),
(2768, 'https://ror.org/00mj9k629', 'en', 1, 'https://ror.org/00mj9k629 Children''s Hospital Colorado'),
(2769, 'https://ror.org/055awd420', 'fr', 1, 'https://ror.org/055awd420 Hôpital de Sion'),
(2770, 'https://ror.org/02cc58y38', 'fr', 1, 'https://ror.org/02cc58y38 Hôpital Debrousse'),
(2771, 'https://ror.org/03vgqy581', 'no_lang_code', 1, 'https://ror.org/03vgqy581 Asahikawa University 旭川大学'),
(2772, 'https://ror.org/046yr0268', 'en', 1, 'https://ror.org/046yr0268 Heartland Regional Medical Center'),
(2773, 'https://ror.org/037m3rm63', 'en', 1, 'https://ror.org/037m3rm63 Japanese Red Cross Asahikawa Hospital 旭川赤十字病院'),
(2774, 'https://ror.org/05g3m5c29', 'en', 1, 'https://ror.org/05g3m5c29 Asanogawa General Hospital 浅ノ川総合病院'),
(2775, 'https://ror.org/00eg8ch54', 'en', 1, 'https://ror.org/00eg8ch54 Hebrew Hospital'),
(2776, 'https://ror.org/056p2ex35', 'en', 1, 'https://ror.org/056p2ex35 Asir Central Hospital مستشفى عسير المركزي'),
(2777, 'https://ror.org/0445ctr76', 'fr', 1, 'https://ror.org/0445ctr76 Hôpital des Diaconesses'),
(2778, 'https://ror.org/04dhg0348', 'en', 1, 'https://ror.org/04dhg0348 Heidelberg Repatriation Hospital'),
(2779, 'https://ror.org/04330ze25', 'en', 1, 'https://ror.org/04330ze25 Ashford Hospital'),
(2780, 'https://ror.org/02etexs15', 'en', 1, 'https://ror.org/02etexs15 Children''s Hospital of New Orleans'),
(2781, 'https://ror.org/01vqqz948', 'fr', 1, 'https://ror.org/01vqqz948 Hopital Universitaire Hedi Chaker المستشفى الجامعي بصفاقس'),
(2782, 'https://ror.org/0093xcb35', 'en', 1, 'https://ror.org/0093xcb35 Ashikaga Red Cross Hospital 足利赤十字病院'),
(2783, 'https://ror.org/05nyenj39', 'de', 1, 'https://ror.org/05nyenj39 Asklepios Hospital Barmbek Asklepios Klinik Barmbek'),
(2784, 'https://ror.org/02jzt8c33', 'en', 1, 'https://ror.org/02jzt8c33 Children''s Hospital of Winnipeg'),
(2785, 'https://ror.org/03qrkhd32', 'en', 1, 'https://ror.org/03qrkhd32 Heilongjiang Provincial Hospital 黑龙江省医院'),
(2786, 'https://ror.org/03r6qg857', 'en', 1, 'https://ror.org/03r6qg857 Cambridge Hospital'),
(2787, 'https://ror.org/02k4w3g59', 'en', 1, 'https://ror.org/02k4w3g59 Helen Hayes Hospital'),
(2788, 'https://ror.org/02722hp10', 'no_lang_code', 1, 'https://ror.org/02722hp10 Assaf Harofeh Medical Center'),
(2789, 'https://ror.org/05mshxb09', 'en', 1, 'https://ror.org/05mshxb09 Sheffield Children''s Hospital'),
(2790, 'https://ror.org/02w4p5q74', 'en', 1, 'https://ror.org/02w4p5q74 Assam Medical College অসম চিকিৎসা মহাবিদ্যালয়'),
(2791, 'https://ror.org/00kg66g91', 'en', 1, 'https://ror.org/00kg66g91 Women & Children''s Hospital of Buffalo'),
(2792, 'https://ror.org/05nygae07', 'pl', 1, 'https://ror.org/05nygae07 Okręgowy Szpital Kolejowy'),
(2793, 'https://ror.org/02c8npj93', 'en', 1, 'https://ror.org/02c8npj93 General-Maternity District Hospital Helena Venizelou Περιφερειακό Γενικό Νοσοκομείο - Μαιευτήριο - "ΕΛΕΝΑ ΒΕΝΙΖΕΛΟΥ"'),
(2794, 'https://ror.org/00t3s0v26', 'en', 1, 'https://ror.org/00t3s0v26 Lok Nayak Jai Prakash Narayan Hospital'),
(2795, 'https://ror.org/01bkdwe73', 'pt', 1, 'https://ror.org/01bkdwe73 Hospital Heliópolis'),
(2796, 'https://ror.org/01qc48765', 'en', 1, 'https://ror.org/01qc48765 Association of Academic Health Centers'),
(2797, 'https://ror.org/05sk0a617', 'en', 1, 'https://ror.org/05sk0a617 Association of Schools of Allied Health Professions'),
(2798, 'https://ror.org/00zzcmy73', 'en', 1, 'https://ror.org/00zzcmy73 Hellenic Red Cross Ελληνικός Ερυθρός Σταυρός'),
(2799, 'https://ror.org/04qkymg17', 'no_lang_code', 1, 'https://ror.org/04qkymg17 Assuta Medical Center אסותא מרכזים רפואיים'),
(2800, 'https://ror.org/01wx86652', 'en', 1, 'https://ror.org/01wx86652 Astley Ainslie Hospital'),
(2801, 'https://ror.org/009at8f10', 'fr', 1, 'https://ror.org/009at8f10 Hôpital Laveran'),
(2802, 'https://ror.org/054876c03', 'tr', 1, 'https://ror.org/054876c03 Ankara Atatürk Göğüs Hastalıkları Ve Göğüs Cerrahisi Eğitim Ve Araştırma Hastanesi'),
(2803, 'https://ror.org/043ek5g31', 'en', 1, 'https://ror.org/043ek5g31 Henan Cancer Hospital 河南省肿瘤医院'),
(2804, 'https://ror.org/02tj04e91', 'en', 1, 'https://ror.org/02tj04e91 Sydney Children''s Hospital'),
(2805, 'https://ror.org/04d8ymc03', 'en', 1, 'https://ror.org/04d8ymc03 Doai Memorial Hospital 同愛記念病院'),
(2806, 'https://ror.org/001wpa366', 'fr', 1, 'https://ror.org/001wpa366 HIA du Val-de-Grâce à Paris Hôpital d''instruction des armées du Val-de-Grâce'),
(2807, 'https://ror.org/05azzyk65', 'en', 1, 'https://ror.org/05azzyk65 Piedmont Athens Regional'),
(2808, 'https://ror.org/03hwe2705', 'en', 1, 'https://ror.org/03hwe2705 UCSF Benioff Children''s Hospital'),
(2809, 'https://ror.org/0031afh91', 'en', 1, 'https://ror.org/0031afh91 Henan Provincial Institute of Occupational Health 职业健康河南省研究所'),
(2810, 'https://ror.org/044hb6b32', 'fr', 1, 'https://ror.org/044hb6b32 Hôpital des Enfants'),
(2811, 'https://ror.org/00njz5525', 'en', 1, 'https://ror.org/00njz5525 Juravinski Hospital'),
(2812, 'https://ror.org/001hz0050', 'en', 1, 'https://ror.org/001hz0050 Capital Regional District'),
(2813, 'https://ror.org/01k7a6660', 'en', 1, 'https://ror.org/01k7a6660 Hennepin County Medical Center'),
(2814, 'https://ror.org/01smmxq73', 'en', 1, 'https://ror.org/01smmxq73 Doctors Hospital'),
(2815, 'https://ror.org/03ja8fa88', 'en', 1, 'https://ror.org/03ja8fa88 Doctors Hospital'),
(2816, 'https://ror.org/05sgxk616', 'en', 1, 'https://ror.org/05sgxk616 Doctors Medical Center'),
(2817, 'https://ror.org/03xbkmz44', 'en', 1, 'https://ror.org/03xbkmz44 Athens Naval & Veterans Hospital Ναυτικό Νοσοκομείο Αθηνών'),
(2818, 'https://ror.org/04z89xx32', 'en', 1, 'https://ror.org/04z89xx32 Atlanta VA Medical Center'),
(2819, 'https://ror.org/05v7jp327', 'en', 1, 'https://ror.org/05v7jp327 Atlanta Medical Center'),
(2820, 'https://ror.org/049w1th24', 'en', 1, 'https://ror.org/049w1th24 Doernbecher Children''s Hospital'),
(2821, 'https://ror.org/03vdj0f87', 'en', 1, 'https://ror.org/03vdj0f87 AtlantiCare'),
(2822, 'https://ror.org/05rmxkq05', 'en', 1, 'https://ror.org/05rmxkq05 Dominican Hospital'),
(2823, 'https://ror.org/04j36h363', 'en', 1, 'https://ror.org/04j36h363 Children''s Hospital & Medical Center'),
(2824, 'https://ror.org/01jhsfg10', 'pt', 1, 'https://ror.org/01jhsfg10 Hospital de Dona Estefânia'),
(2825, 'https://ror.org/05jyavm62', 'en', 1, 'https://ror.org/05jyavm62 Henrico Doctors'' Hospital'),
(2826, 'https://ror.org/02jz99c72', 'en', 1, 'https://ror.org/02jz99c72 Atlantic Health System'),
(2827, 'https://ror.org/04wpkfc35', 'fr', 1, 'https://ror.org/04wpkfc35 Hôpital d''Instruction des Armées Sainte-Anne'),
(2828, 'https://ror.org/0367sye10', 'nl', 1, 'https://ror.org/0367sye10 Atrium Medisch Centrum Parkstad'),
(2829, 'https://ror.org/049hmfa48', 'en', 1, 'https://ror.org/049hmfa48 Henry Mayo Newhall Memorial Hospital'),
(2830, 'https://ror.org/054zbmd26', 'en', 1, 'https://ror.org/054zbmd26 Hera General Hospital'),
(2831, 'https://ror.org/04hzs7842', 'fr', 1, 'https://ror.org/04hzs7842 Centre Hospitalier Edmond Garcin'),
(2832, 'https://ror.org/00fthae95', 'en', 1, 'https://ror.org/00fthae95 Daping Hospital 第三军医大学大坪医院'),
(2833, 'https://ror.org/0511yej17', 'en', 1, 'https://ror.org/0511yej17 Dartmouth Institute for Health Policy and Clinical Practice'),
(2834, 'https://ror.org/00xznf773', 'en', 1, 'https://ror.org/00xznf773 Auburn Community Hospital'),
(2835, 'https://ror.org/04d45ra64', 'fr', 1, 'https://ror.org/04d45ra64 Hôpital du Hasenrain'),
(2836, 'https://ror.org/05328fn02', 'en', 1, 'https://ror.org/05328fn02 Hermanos Ameijeiras Hospital Hospital Clínico Quirúrgico "Hermanos Ameijeiras"'),
(2837, 'https://ror.org/037v8w471', 'en', 1, 'https://ror.org/037v8w471 Memorial Hermann Institute for Rehabilitation and Research Foundation'),
(2838, 'https://ror.org/04sh9kd82', 'en', 1, 'https://ror.org/04sh9kd82 Starship Children''s Health'),
(2839, 'https://ror.org/02ckh3s34', 'da', 1, 'https://ror.org/02ckh3s34 Herning Regional Hospital Regionshospitalet Herning'),
(2840, 'https://ror.org/01735bk60', 'sv', 1, 'https://ror.org/01735bk60 Göteborgs barnsjukhus'),
(2841, 'https://ror.org/05aykvr94', 'de', 1, 'https://ror.org/05aykvr94 Augusta Krankenhaus'),
(2842, 'https://ror.org/0285m5c69', 'nl', 1, 'https://ror.org/0285m5c69 De Wever-Ziekenhuis'),
(2843, 'https://ror.org/0431v1017', 'fr', 1, 'https://ror.org/0431v1017 Hôpital Riviera-Chablais'),
(2844, 'https://ror.org/0240cjw65', 'fr', 1, 'https://ror.org/0240cjw65 Polyclinique de Bordeaux-Tondu'),
(2845, 'https://ror.org/0511k4970', 'en', 1, 'https://ror.org/0511k4970 Children''s Hospital أطفال مستشفى تونس'),
(2846, 'https://ror.org/0364a8z71', 'tr', 1, 'https://ror.org/0364a8z71 Denizli Devlet Hastanesi Denizli State Hospital'),
(2847, 'https://ror.org/02jn27q49', 'en', 1, 'https://ror.org/02jn27q49 Riverview Psychiatric Center'),
(2848, 'https://ror.org/05dfdta49', 'en', 1, 'https://ror.org/05dfdta49 Aultman Health Foundation'),
(2849, 'https://ror.org/017383496', 'en', 1, 'https://ror.org/017383496 Aultman Hospital'),
(2850, 'https://ror.org/03jg32m15', 'en', 1, 'https://ror.org/03jg32m15 Dorothea Dix Hospital'),
(2851, 'https://ror.org/00wtgx181', 'en', 1, 'https://ror.org/00wtgx181 Highland Hospital'),
(2852, 'https://ror.org/00enq8e33', 'en', 1, 'https://ror.org/00enq8e33 Aurelia Hospital'),
(2853, 'https://ror.org/00z9qkg54', 'en', 1, 'https://ror.org/00z9qkg54 Highland Hospital'),
(2854, 'https://ror.org/05tta9908', 'de', 1, 'https://ror.org/05tta9908 Children''s Hospital in Eastern Switzerland Ostschweizer Kinderspital'),
(2855, 'https://ror.org/04d5w7479', 'en', 1, 'https://ror.org/04d5w7479 Aurora Health Care'),
(2856, 'https://ror.org/04fc1dc24', 'en', 1, 'https://ror.org/04fc1dc24 Dorset County Hospital'),
(2857, 'https://ror.org/04760qd13', 'tr', 1, 'https://ror.org/04760qd13 GATA Haydarpaşa Eğitim Hastanesi'),
(2858, 'https://ror.org/01a6tsm75', 'en', 1, 'https://ror.org/01a6tsm75 Hillel Yaffe Medical Center'),
(2859, 'https://ror.org/02s8znz42', 'fr', 1, 'https://ror.org/02s8znz42 Centre Hospitalier de Mulhouse'),
(2860, 'https://ror.org/049cbmb74', 'en', 1, 'https://ror.org/049cbmb74 Children''s Hospital of Wisconsin'),
(2861, 'https://ror.org/01tcy5w98', 'no_lang_code', 1, 'https://ror.org/01tcy5w98 Aurum Institute'),
(2862, 'https://ror.org/00sqp6g97', 'fr', 1, 'https://ror.org/00sqp6g97 Centre hospitalier Emile Roux'),
(2863, 'https://ror.org/02mby1820', 'it', 1, 'https://ror.org/02mby1820 Azienda USL di Bologna'),
(2864, 'https://ror.org/00jpae132', 'en', 1, 'https://ror.org/00jpae132 Hillingdon Hospital'),
(2865, 'https://ror.org/00zz54311', 'en', 1, 'https://ror.org/00zz54311 Australian Centre for Sexual Health'),
(2866, 'https://ror.org/00274we69', 'no_lang_code', 1, 'https://ror.org/00274we69 Himchan Hospital 부평 힘찬병원'),
(2867, 'https://ror.org/037767x92', 'en', 1, 'https://ror.org/037767x92 Himeji Medical Center 独立行政法人 国立病院機構 姫路医療センター'),
(2868, 'https://ror.org/047sehh14', 'en', 1, 'https://ror.org/047sehh14 Himeji Red Cross Hospital 姫路赤十字病院'),
(2869, 'https://ror.org/058td2q88', 'fr', 1, 'https://ror.org/058td2q88 Hôpital Foch'),
(2870, 'https://ror.org/055xb4311', 'en', 1, 'https://ror.org/055xb4311 Austrian Agency for Health and Food Safety Österreichische Agentur für Gesundheit und Ernährungssicherheit'),
(2871, 'https://ror.org/01nj4ek07', 'en', 1, 'https://ror.org/01nj4ek07 Hinchingbrooke Hospital'),
(2872, 'https://ror.org/00fgdyv87', 'no_lang_code', 1, 'https://ror.org/00fgdyv87 Hindu Rao Hospital'),
(2873, 'https://ror.org/056mx1477', 'en', 1, 'https://ror.org/056mx1477 Children''s Hospital at Dartmouth Hitchcock'),
(2874, 'https://ror.org/021wsw395', 'fr', 1, 'https://ror.org/021wsw395 Hôpital Fontmaure'),
(2875, 'https://ror.org/00aff0y51', 'tr', 1, 'https://ror.org/00aff0y51 Dr. Behçet Uz Çocuk Hastalıkları Hastanesi'),
(2876, 'https://ror.org/0382m3r69', 'en', 1, 'https://ror.org/0382m3r69 Dr Gray''s Hospital'),
(2877, 'https://ror.org/03n0fp725', 'en', 1, 'https://ror.org/03n0fp725 Children''s Hospital at Montefiore'),
(2878, 'https://ror.org/01c2wzp81', 'tr', 1, 'https://ror.org/01c2wzp81 Dr Lütfi Kırdar Kartal Eğitim ve Araştırma Hastanesi'),
(2879, 'https://ror.org/05nter171', 'en', 1, 'https://ror.org/05nter171 Avera Health'),
(2880, 'https://ror.org/01dsy9055', 'en', 1, 'https://ror.org/01dsy9055 University Hospital Ayr'),
(2881, 'https://ror.org/05aqcx827', 'en', 1, 'https://ror.org/05aqcx827 Ayrshire Central Hospital'),
(2882, 'https://ror.org/05v5wwy67', 'en', 1, 'https://ror.org/05v5wwy67 Hippocration General Hospital Γενικό Νοσοκομείο Αθηνών Ιπποκράτειο'),
(2883, 'https://ror.org/005s69p38', 'it', 1, 'https://ror.org/005s69p38 Azienda Ospedaliera Ospedale San Carlo Borromeo'),
(2884, 'https://ror.org/02m5e3762', 'no_lang_code', 1, 'https://ror.org/02m5e3762 Dr. Balabhai Nanavati Hospital'),
(2885, 'https://ror.org/05et9pf90', 'en', 1, 'https://ror.org/05et9pf90 B.P. Koirala Institute of Health Sciences विपी कोइराला स्वास्थ्य विज्ञान प्रतिष्ठान'),
(2886, 'https://ror.org/02w35z347', 'fr', 1, 'https://ror.org/02w35z347 Hôpital Gui de Chauliac'),
(2887, 'https://ror.org/021aj5d10', 'en', 1, 'https://ror.org/021aj5d10 Dr. R. Ahmed Dental College and Hospital ডাঃ আর আহমেদ ডেন্টাল কলেজ ও হাসপাতাল'),
(2888, 'https://ror.org/0408b4j80', 'en', 1, 'https://ror.org/0408b4j80 B.J. Medical College'),
(2889, 'https://ror.org/03wg58p93', 'en', 1, 'https://ror.org/03wg58p93 Hamilton Medical Center'),
(2890, 'https://ror.org/02rw2zs46', 'en', 1, 'https://ror.org/02rw2zs46 Bai Jerbai Wadia Hospital for Children'),
(2891, 'https://ror.org/01j7azy31', 'tr', 1, 'https://ror.org/01j7azy31 Dr Sami Ulus Çocuk Sağlığı ve Hastalıkları Eğitim ve Araştırma Hastanesi'),
(2892, 'https://ror.org/05nmzkr23', 'en', 1, 'https://ror.org/05nmzkr23 Bankura Sammilani Medical College বাঁকুড়া সম্মিলনী মেডিক্যাল কলেজ'),
(2893, 'https://ror.org/04v0wnx78', 'tr', 1, 'https://ror.org/04v0wnx78 Dr. Siyami Ersek Göğüs Kalp Ve Damar Cerrahisi Eğitim Ve Araştırma Hastanesi'),
(2894, 'https://ror.org/05mgn5w61', 'no_lang_code', 1, 'https://ror.org/05mgn5w61 Hiraka General Hospital 平鹿総合病院'),
(2895, 'https://ror.org/01k22c722', 'en', 1, 'https://ror.org/01k22c722 Dr. V. M. Government Medical College डॉ. वैशंपायन स्मृती शासकीय वैद्यकीय महाविद्यालय'),
(2896, 'https://ror.org/00hw84d70', 'en', 1, 'https://ror.org/00hw84d70 Baba Memorial Hospital 社会医療法人ペガサス 馬場記念病院'),
(2897, 'https://ror.org/05wvk1430', 'en', 1, 'https://ror.org/05wvk1430 Municipal Hirakata City Hospital 市立枚方市民病院'),
(2898, 'https://ror.org/026qp7597', 'tr', 1, 'https://ror.org/026qp7597 Zekai Tahir Burak Kadın Sağlığı Eğitim ve Araştırma Hastanesi'),
(2899, 'https://ror.org/00ceh2v36', 'en', 1, 'https://ror.org/00ceh2v36 Hiratsuka City Hospital 平塚市民病院'),
(2900, 'https://ror.org/05nsbhw27', 'en', 1, 'https://ror.org/05nsbhw27 Centre hospitalier pour enfants de l''est de l''Ontario Children''s Hospital of Eastern Ontario'),
(2901, 'https://ror.org/01x3f1613', 'en', 1, 'https://ror.org/01x3f1613 Driscoll Children''s Hospital'),
(2902, 'https://ror.org/01r0bpx56', 'no_lang_code', 1, 'https://ror.org/01r0bpx56 Hiratsuka Kyosai Hospital 平塚共済病院'),
(2903, 'https://ror.org/03qrrp624', 'en', 1, 'https://ror.org/03qrrp624 Hirosaki National Hospital 国立病院機構弘前病院'),
(2904, 'https://ror.org/04pag4b70', 'fr', 1, 'https://ror.org/04pag4b70 Hôpital Jean-Verdier'),
(2905, 'https://ror.org/011as4z76', 'fr', 1, 'https://ror.org/011as4z76 Centre Hospitalier Jean-Rostand'),
(2906, 'https://ror.org/03ephvw84', 'en', 1, 'https://ror.org/03ephvw84 Dronning Ingrids Hospital Queen Ingrid''s Hospital'),
(2907, 'https://ror.org/01hkncq81', 'en', 1, 'https://ror.org/01hkncq81 Hiroshima City Asa Citizens Hospital 広島市立安佐市民病院'),
(2908, 'https://ror.org/04qgcgz06', 'en', 1, 'https://ror.org/04qgcgz06 University Hospital of North Durham'),
(2909, 'https://ror.org/013s4zk47', 'en', 1, 'https://ror.org/013s4zk47 Hiroshima General Hospital 広島総合病院'),
(2910, 'https://ror.org/04x27ad97', 'en', 1, 'https://ror.org/04x27ad97 Baby Memorial Hospital');
INSERT INTO `rors` VALUES
(2911, 'https://ror.org/04czxss33', 'en', 1, 'https://ror.org/04czxss33 Dubai Hospital مستشفى دبـــي'),
(2912, 'https://ror.org/05ecec111', 'en', 1, 'https://ror.org/05ecec111 Bạch Mai Hospital Bệnh viện Bạch Mai'),
(2913, 'https://ror.org/0282qcz50', 'en', 1, 'https://ror.org/0282qcz50 Children''s Hospital of Orange County'),
(2914, 'https://ror.org/01dcrt245', 'en', 1, 'https://ror.org/01dcrt245 Dubai Health Authority هيئة الصحة بدبي'),
(2915, 'https://ror.org/010gpfc02', 'no', 1, 'https://ror.org/010gpfc02 Bærum Sykehus'),
(2916, 'https://ror.org/01xq02v66', 'en', 1, 'https://ror.org/01xq02v66 Hasbro Children''s Hospital'),
(2917, 'https://ror.org/03w11wq45', 'es', 1, 'https://ror.org/03w11wq45 El Hospital General de Agudos Carlos G. Durand'),
(2918, 'https://ror.org/0300yd604', 'pt', 1, 'https://ror.org/0300yd604 Bahian School of Medicine and Public Health Escola Bahiana de Medicina e Saúde Pública'),
(2919, 'https://ror.org/029gprt07', 'en', 1, 'https://ror.org/029gprt07 Dunedin Public Hospital'),
(2920, 'https://ror.org/01rrd4612', 'no_lang_code', 1, 'https://ror.org/01rrd4612 Hiroshima Prefectural Hospital 県立広島病院'),
(2921, 'https://ror.org/05kxrms28', 'hu', 1, 'https://ror.org/05kxrms28 Bajcsy-Zsilinszky Kórház és Rendelőintézet'),
(2922, 'https://ror.org/04a20gb33', 'en', 1, 'https://ror.org/04a20gb33 Hispanic Health Council'),
(2923, 'https://ror.org/02smkcg51', 'tr', 1, 'https://ror.org/02smkcg51 Bakırköy Dr.Sadi Konuk Eğitim ve Araştırma Hastanesi'),
(2924, 'https://ror.org/03sc99320', 'en', 1, 'https://ror.org/03sc99320 Hitachi General Hospital 日立総合病院'),
(2925, 'https://ror.org/03vnj0h28', 'en', 1, 'https://ror.org/03vnj0h28 Duke Children''s Hospital & Health Center'),
(2926, 'https://ror.org/05087r129', 'en', 1, 'https://ror.org/05087r129 Hizen Psychiatric Center 肥前精神医療センター'),
(2927, 'https://ror.org/006f92m60', 'en', 1, 'https://ror.org/006f92m60 Duchess of Kent Children''s Hospital 大口環根德公爵夫人兒童醫院'),
(2928, 'https://ror.org/05qmk4a18', 'en', 1, 'https://ror.org/05qmk4a18 Bangalore Medical College and Research Institute ಬೆಂಗಳೂರು ವೈದ್ಯಕೀಯ ವಿದ್ಯಾಲಯ'),
(2929, 'https://ror.org/044ycg712', 'it', 1, 'https://ror.org/044ycg712 Ospedale dei Bambini Vittore Buzzi'),
(2930, 'https://ror.org/04ap0ew90', 'no_lang_code', 1, 'https://ror.org/04ap0ew90 Hlabisa Hospital'),
(2931, 'https://ror.org/008dmmd16', 'fr', 1, 'https://ror.org/008dmmd16 Hôpital Ophtalmique Jules-Gonin'),
(2932, 'https://ror.org/00t1xpx62', 'fr', 1, 'https://ror.org/00t1xpx62 Hôpital Kirchberg'),
(2933, 'https://ror.org/02ndk3y82', 'en', 1, 'https://ror.org/02ndk3y82 Children''s Medical Center'),
(2934, 'https://ror.org/00gffbx54', 'fr', 1, 'https://ror.org/00gffbx54 Hôpital La Rabta المستشفى الجامعي الرابطة'),
(2935, 'https://ror.org/014ttpa29', 'en', 1, 'https://ror.org/014ttpa29 Bangour Village Hospital'),
(2936, 'https://ror.org/04ckvpk15', 'fr', 1, 'https://ror.org/04ckvpk15 Hôpital Laennec'),
(2937, 'https://ror.org/03j808814', 'no_lang_code', 1, 'https://ror.org/03j808814 Hokkaido Central Hospital 北海道中央病院'),
(2938, 'https://ror.org/050hwd209', 'en', 1, 'https://ror.org/050hwd209 Hokkaido Institute of Public Health 北海道立衛生研究所'),
(2939, 'https://ror.org/01v27vf29', 'en', 1, 'https://ror.org/01v27vf29 Children''s Medical Center'),
(2940, 'https://ror.org/05ct0ag17', 'en', 1, 'https://ror.org/05ct0ag17 Banner Estrella Medical Center'),
(2941, 'https://ror.org/04gjkkf30', 'en', 1, 'https://ror.org/04gjkkf30 Banner Sun Health Research Institute'),
(2942, 'https://ror.org/03f1ecr94', 'en', 1, 'https://ror.org/03f1ecr94 Saint Thomas Midtown Hospital'),
(2943, 'https://ror.org/019s1t671', 'en', 1, 'https://ror.org/019s1t671 Montgomery County Department of Health and Human Services'),
(2944, 'https://ror.org/000pfrh90', 'en', 1, 'https://ror.org/000pfrh90 Baptist Hospital of Miami'),
(2945, 'https://ror.org/02pb9wz46', 'fr', 1, 'https://ror.org/02pb9wz46 Hôpital Léon Bérard'),
(2946, 'https://ror.org/054bptx32', 'fr', 1, 'https://ror.org/054bptx32 Hôpital Maison Blanche'),
(2947, 'https://ror.org/05d6v2h63', 'fr', 1, 'https://ror.org/05d6v2h63 Hôpital Manchester'),
(2948, 'https://ror.org/03kpa7r53', 'en', 1, 'https://ror.org/03kpa7r53 Herttoniemi Hospital'),
(2949, 'https://ror.org/03a1rt493', 'en', 1, 'https://ror.org/03a1rt493 Kätilöopisto Maternity Hospital'),
(2950, 'https://ror.org/05vp5x049', 'en', 1, 'https://ror.org/05vp5x049 Children''s Hospital of Richmond at VCU'),
(2951, 'https://ror.org/03fvyqb23', 'en', 1, 'https://ror.org/03fvyqb23 Baptist Health Louisville'),
(2952, 'https://ror.org/007sp7t15', 'en', 1, 'https://ror.org/007sp7t15 INTEGRIS Baptist Medical Center'),
(2953, 'https://ror.org/017t1dh18', 'fr', 1, 'https://ror.org/017t1dh18 Hôpital Max Fourestier'),
(2954, 'https://ror.org/037ybm139', 'en', 1, 'https://ror.org/037ybm139 Baptist Medical Center Jacksonville'),
(2955, 'https://ror.org/03mehsr39', 'en', 1, 'https://ror.org/03mehsr39 Hokushin General Hospital 北信総合病院'),
(2956, 'https://ror.org/02x0hgx61', 'fr', 1, 'https://ror.org/02x0hgx61 Hôpital Militaire Moulay Ismail'),
(2957, 'https://ror.org/013qhbw17', 'fr', 1, 'https://ror.org/013qhbw17 Hôpital Mongi Slim'),
(2958, 'https://ror.org/0004gzs06', 'en', 1, 'https://ror.org/0004gzs06 Hokuyukai Neurology Hospital 医療法人北祐会 北祐会神経内科病院'),
(2959, 'https://ror.org/05xtmzc93', 'en', 1, 'https://ror.org/05xtmzc93 Baptist Medical Center Beaches'),
(2960, 'https://ror.org/01z3j3n30', 'en', 1, 'https://ror.org/01z3j3n30 Schneider Children''s Medical Center'),
(2961, 'https://ror.org/03navsr28', 'fr', 1, 'https://ror.org/03navsr28 Hôpital Mère-Enfant'),
(2962, 'https://ror.org/05xtj6g89', 'en', 1, 'https://ror.org/05xtj6g89 Baptist Memorial Hospital'),
(2963, 'https://ror.org/055k2e754', 'en', 1, 'https://ror.org/055k2e754 Baltimore County Department of Health'),
(2964, 'https://ror.org/02ssjh827', 'en', 1, 'https://ror.org/02ssjh827 Hôpital National de Niamey National Hospital Niamey'),
(2965, 'https://ror.org/008x85y42', 'no_lang_code', 1, 'https://ror.org/008x85y42 Hospital Bqyhallh بیمارستان بقیةالله'),
(2966, 'https://ror.org/02g48bh60', 'en', 1, 'https://ror.org/02g48bh60 Chris Hani Baragwanath Hospital'),
(2967, 'https://ror.org/00skrw306', 'en', 1, 'https://ror.org/00skrw306 Colorado Department of Human Services'),
(2968, 'https://ror.org/048zq6v82', 'en', 1, 'https://ror.org/048zq6v82 Children''s Research Hospital 小児研究病院'),
(2969, 'https://ror.org/01q046q46', 'fr', 1, 'https://ror.org/01q046q46 Hôpital Pierre Wertheimer'),
(2970, 'https://ror.org/0429d0v34', 'en', 1, 'https://ror.org/0429d0v34 China Animal Health and Epidemiology Center 中国动物卫生与流行病学中心'),
(2971, 'https://ror.org/01znbfh26', 'fi', 1, 'https://ror.org/01znbfh26 Forssan Seudun Terveydenhuollon Kuntayhtymä'),
(2972, 'https://ror.org/02hp4jd32', 'en', 1, 'https://ror.org/02hp4jd32 Summa Barberton Hospital'),
(2973, 'https://ror.org/022vd9g66', 'fr', 1, 'https://ror.org/022vd9g66 Hôpital Orthopédique de la Suisse Romande'),
(2974, 'https://ror.org/00chbca67', 'en', 1, 'https://ror.org/00chbca67 Bhabha Atomic Research Center Hospital'),
(2975, 'https://ror.org/004nhy279', 'en', 1, 'https://ror.org/004nhy279 Barnet Hospital'),
(2976, 'https://ror.org/056dkgp19', 'en', 1, 'https://ror.org/056dkgp19 Health Forecasting'),
(2977, 'https://ror.org/00hmeez77', 'en', 1, 'https://ror.org/00hmeez77 Barzilai Medical Center'),
(2978, 'https://ror.org/057vt8c33', 'fr', 1, 'https://ror.org/057vt8c33 Hôpital Paule de Viguier'),
(2979, 'https://ror.org/01bbyhp53', 'en', 1, 'https://ror.org/01bbyhp53 Basingstoke and North Hampshire Hospital'),
(2980, 'https://ror.org/02x581406', 'fr', 1, 'https://ror.org/02x581406 Hôpital Pellegrin'),
(2981, 'https://ror.org/005927371', 'en', 1, 'https://ror.org/005927371 Ching Kuo Institute of Management and Health 經國管理暨健康學院'),
(2982, 'https://ror.org/03s33gc98', 'it', 1, 'https://ror.org/03s33gc98 Ospedale Bassini'),
(2983, 'https://ror.org/01y8zn427', 'en', 1, 'https://ror.org/01y8zn427 Chittagong Medical College চট্টগ্রাম মেডিকেল কলেজ'),
(2984, 'https://ror.org/024cn3w16', 'fr', 1, 'https://ror.org/024cn3w16 Centre Hospitalier Philippe Pinel'),
(2985, 'https://ror.org/00j4pze04', 'es', 1, 'https://ror.org/00j4pze04 Hospital de Basurto'),
(2986, 'https://ror.org/03vkkz907', 'en', 1, 'https://ror.org/03vkkz907 Batra Hospital and Medical Research Centre'),
(2987, 'https://ror.org/03mv9x076', 'en', 1, 'https://ror.org/03mv9x076 HCI International Medical Centre'),
(2988, 'https://ror.org/01dk7q852', 'no_lang_code', 1, 'https://ror.org/01dk7q852 Cardiovascular Center Hokkaido Ohno Hospital 心臓血管センター北海道大野病院'),
(2989, 'https://ror.org/00vhr7p75', 'en', 1, 'https://ror.org/00vhr7p75 Battle Hospital'),
(2990, 'https://ror.org/05xrsn753', 'en', 1, 'https://ror.org/05xrsn753 Choithram Hospital and Research Centre'),
(2991, 'https://ror.org/02y005z64', 'no_lang_code', 1, 'https://ror.org/02y005z64 Hokkaido hospital 北海道病院'),
(2992, 'https://ror.org/046yvwt23', 'fr', 1, 'https://ror.org/046yvwt23 Hôpital Principal de Dakar'),
(2993, 'https://ror.org/05wbx0564', 'en', 1, 'https://ror.org/05wbx0564 Chonburi Hospital โรงพยาบาลชลบุรี'),
(2994, 'https://ror.org/01eqjmz45', 'en', 1, 'https://ror.org/01eqjmz45 Hokko Memorial Hospital 北光記念病院'),
(2995, 'https://ror.org/01z7mq587', 'tr', 1, 'https://ror.org/01z7mq587 Diyarbakır Askeri Hastanesi'),
(2996, 'https://ror.org/01fmz4h16', 'no_lang_code', 1, 'https://ror.org/01fmz4h16 Hirosakiaiseikai Hospital 弘前愛成会病院'),
(2997, 'https://ror.org/03xhwyc44', 'en', 1, 'https://ror.org/03xhwyc44 Chongqing Emergency Medical Center 重庆市急救医疗中心'),
(2998, 'https://ror.org/03dm2se39', 'en', 1, 'https://ror.org/03dm2se39 Christ Hospital'),
(2999, 'https://ror.org/04cf4ba49', 'da', 1, 'https://ror.org/04cf4ba49 Holbæk Sygehus'),
(3000, 'https://ror.org/05gfebp73', 'en', 1, 'https://ror.org/05gfebp73 CSI Holdsworth Memorial Hospital'),
(3001, 'https://ror.org/059xnz004', 'en', 1, 'https://ror.org/059xnz004 Christ Hospital'),
(3002, 'https://ror.org/0101aa973', 'en', 1, 'https://ror.org/0101aa973 Hollywood Private Hospital'),
(3003, 'https://ror.org/01wdckv42', 'en', 1, 'https://ror.org/01wdckv42 Bayfront Medical Center'),
(3004, 'https://ror.org/03gbbyk68', 'en', 1, 'https://ror.org/03gbbyk68 Holmes Regional Medical Center'),
(3005, 'https://ror.org/0084g8g60', 'tr', 1, 'https://ror.org/0084g8g60 Bayındır Hastanesi'),
(3006, 'https://ror.org/01j6t9363', 'fr', 1, 'https://ror.org/01j6t9363 Hôpital Razi de La Manouba مستشفئ الرازي'),
(3007, 'https://ror.org/01t409e13', 'en', 1, 'https://ror.org/01t409e13 Regional Hospital Holstebro'),
(3008, 'https://ror.org/01vj9qy35', 'en', 1, 'https://ror.org/01vj9qy35 Christian Medical College'),
(3009, 'https://ror.org/057wh9709', 'fr', 1, 'https://ror.org/057wh9709 Centre hospitalier Robert-Ballanger'),
(3010, 'https://ror.org/054kr1687', 'en', 1, 'https://ror.org/054kr1687 Holy Cross Hospital'),
(3011, 'https://ror.org/04g8hwy69', 'en', 1, 'https://ror.org/04g8hwy69 Holy Cross Hospital'),
(3012, 'https://ror.org/00pk1yr39', 'en', 1, 'https://ror.org/00pk1yr39 Sørlandet Hospital Arendal Sørlandet Sykehus HF'),
(3013, 'https://ror.org/03jb9b006', 'en', 1, 'https://ror.org/03jb9b006 Dwight D. Eisenhower VA Medical Center'),
(3014, 'https://ror.org/01gxs7p86', 'en', 1, 'https://ror.org/01gxs7p86 Christiana Hospital'),
(3015, 'https://ror.org/043mzjj67', 'en', 1, 'https://ror.org/043mzjj67 Beaumont Hospital'),
(3016, 'https://ror.org/02h905004', 'en', 1, 'https://ror.org/02h905004 Christiana Care Health System'),
(3017, 'https://ror.org/04ayype77', 'en', 1, 'https://ror.org/04ayype77 Wolfson Medical Center מרכז רפואי וולפסון'),
(3018, 'https://ror.org/00eyk9919', 'en', 1, 'https://ror.org/00eyk9919 Holy Family Hospital ہولی فیملی ہسپتال'),
(3019, 'https://ror.org/03bfp2076', 'en', 1, 'https://ror.org/03bfp2076 Beckman Laser Institute and Medical Clinic'),
(3020, 'https://ror.org/00m2etp60', 'en', 1, 'https://ror.org/00m2etp60 Holy Family Hospital Nazareth'),
(3021, 'https://ror.org/044prn184', 'en', 1, 'https://ror.org/044prn184 Holy Family Hospital'),
(3022, 'https://ror.org/004we6052', 'en', 1, 'https://ror.org/004we6052 Holy Family Hospital'),
(3023, 'https://ror.org/05fnpxf31', 'en', 1, 'https://ror.org/05fnpxf31 Holy Name Medical Center'),
(3024, 'https://ror.org/00te55z70', 'fi', 1, 'https://ror.org/00te55z70 Mikkelin keskussairaala'),
(3025, 'https://ror.org/015nymp25', 'en', 1, 'https://ror.org/015nymp25 Edith Nourse Rogers Memorial Veterans Hospital'),
(3026, 'https://ror.org/003rmx748', 'en', 1, 'https://ror.org/003rmx748 Holy Spirit Northside Private Hospital'),
(3027, 'https://ror.org/00fqtfz78', 'en', 1, 'https://ror.org/00fqtfz78 Beebe Healthcare'),
(3028, 'https://ror.org/04vt4a111', 'en', 1, 'https://ror.org/04vt4a111 Behavioral Health Research Center of the Southwest'),
(3029, 'https://ror.org/02kckde25', 'en', 1, 'https://ror.org/02kckde25 Earl K. Long Medical Center'),
(3030, 'https://ror.org/025sdjb25', 'fr', 1, 'https://ror.org/025sdjb25 Centre Hospitalier et Universitaire de Brazzaville'),
(3031, 'https://ror.org/0259e4473', 'en', 1, 'https://ror.org/0259e4473 The Military General Hospital of Beijing PLA 中国人民解放军空军总医院'),
(3032, 'https://ror.org/021dmtc66', 'en', 1, 'https://ror.org/021dmtc66 Regional Hospital Horsens Regionshospitalet Horsens'),
(3033, 'https://ror.org/03zeg3732', 'en', 1, 'https://ror.org/03zeg3732 Horton General Hospital'),
(3034, 'https://ror.org/00xz7ma09', 'fr', 1, 'https://ror.org/00xz7ma09 Hôpital régional'),
(3035, 'https://ror.org/021959v84', 'fr', 1, 'https://ror.org/021959v84 Hôpital Saint-André'),
(3036, 'https://ror.org/02fze0e77', 'en', 1, 'https://ror.org/02fze0e77 Star General Hospital 星総合病院'),
(3037, 'https://ror.org/01espdw89', 'en', 1, 'https://ror.org/01espdw89 Beijing Chest Hospital'),
(3038, 'https://ror.org/00qdkc036', 'no_lang_code', 1, 'https://ror.org/00qdkc036 Hoshigaoka Medical Center 星ヶ丘医療センター'),
(3039, 'https://ror.org/04ky9n739', 'no_lang_code', 1, 'https://ror.org/04ky9n739 Beijing Chuiyangliu Hospital 北京市垂杨柳医院'),
(3040, 'https://ror.org/01e4pq116', 'fr', 1, 'https://ror.org/01e4pq116 Hôpital Saint Charles'),
(3041, 'https://ror.org/03sbc8x80', 'fr', 1, 'https://ror.org/03sbc8x80 Centre Hospitalier Universitaire Ibn Rochd'),
(3042, 'https://ror.org/05nzesv70', 'en', 1, 'https://ror.org/05nzesv70 Royal Glamorgan Hospital'),
(3043, 'https://ror.org/03vj98x35', 'en', 1, 'https://ror.org/03vj98x35 Beijing Dao Pei Hospital 北京道培医院'),
(3044, 'https://ror.org/03dkpj951', 'en', 1, 'https://ror.org/03dkpj951 East Jefferson General Hospital'),
(3045, 'https://ror.org/028vv3s82', 'en', 1, 'https://ror.org/028vv3s82 East Surrey Hospital'),
(3046, 'https://ror.org/03ew6dd87', 'en', 1, 'https://ror.org/03ew6dd87 East Tennessee Children''s Hospital'),
(3047, 'https://ror.org/03ydmxb41', 'es', 1, 'https://ror.org/03ydmxb41 Hospital Alemán'),
(3048, 'https://ror.org/00xmzb398', 'pt', 1, 'https://ror.org/00xmzb398 Hospital Alemão Oswaldo Cruz'),
(3049, 'https://ror.org/053c75a48', 'en', 1, 'https://ror.org/053c75a48 East Texas Medical Center'),
(3050, 'https://ror.org/035t17984', 'en', 1, 'https://ror.org/035t17984 Beijing Jishuitan Hospital 北京市创伤骨科研究所'),
(3051, 'https://ror.org/00zyk6d86', 'es', 1, 'https://ror.org/00zyk6d86 Hospital Alto Deba'),
(3052, 'https://ror.org/026as0d42', 'es', 1, 'https://ror.org/026as0d42 Hospital Angeles Pedregal'),
(3053, 'https://ror.org/00vyyx863', 'en', 1, 'https://ror.org/00vyyx863 Eastern Health'),
(3054, 'https://ror.org/007hzv648', 'fr', 1, 'https://ror.org/007hzv648 Hôpital Saint Lazare'),
(3055, 'https://ror.org/048h7jv87', 'fr', 1, 'https://ror.org/048h7jv87 Centre Hospitalier Universitaire de Cocody'),
(3056, 'https://ror.org/03yjk2s16', 'fr', 1, 'https://ror.org/03yjk2s16 Centre Hospitalier National Universitaire de Fann'),
(3057, 'https://ror.org/00gv7aj90', 'es', 1, 'https://ror.org/00gv7aj90 Hospital Barros Luco-Trudeau'),
(3058, 'https://ror.org/043sbvg03', 'en', 1, 'https://ror.org/043sbvg03 Eastern Hepatobiliary Surgery Hospital 东方肝胆外科医院'),
(3059, 'https://ror.org/027t58004', 'en', 1, 'https://ror.org/027t58004 Eastern Maine Medical Center'),
(3060, 'https://ror.org/00a3dqw47', 'en', 1, 'https://ror.org/00a3dqw47 Eastern State Hospital'),
(3061, 'https://ror.org/04etaja30', 'no_lang_code', 1, 'https://ror.org/04etaja30 Beijing YouAn Hospital 北京佑安医院'),
(3062, 'https://ror.org/03jss6s30', 'pt', 1, 'https://ror.org/03jss6s30 Dr. Euryclides Hospital de Jesus Zerbini'),
(3063, 'https://ror.org/04sfmcd28', 'fr', 1, 'https://ror.org/04sfmcd28 Centre Hospitalier Universitaire Pointe-à-Pitre'),
(3064, 'https://ror.org/04djj4v98', 'es', 1, 'https://ror.org/04djj4v98 Buenos Aires British Hospital Hospital Británico de Buenos Aires'),
(3065, 'https://ror.org/052w2jw50', 'fr', 1, 'https://ror.org/052w2jw50 Hôpital Saint-Jacques'),
(3066, 'https://ror.org/03q0mrg27', 'es', 1, 'https://ror.org/03q0mrg27 Hospital Can Misses'),
(3067, 'https://ror.org/03zgmap36', 'en', 1, 'https://ror.org/03zgmap36 Easton Hospital'),
(3068, 'https://ror.org/03gvpk069', 'no_lang_code', 1, 'https://ror.org/03gvpk069 Edendale Hospital'),
(3069, 'https://ror.org/040jhkj51', 'fr', 1, 'https://ror.org/040jhkj51 Centre Hospitalier de Saint Jean de Dieu'),
(3070, 'https://ror.org/00h1apf46', 'fr', 1, 'https://ror.org/00h1apf46 Centre Hospitalier Universitaire de Yopougon'),
(3071, 'https://ror.org/01azs0t89', 'es', 1, 'https://ror.org/01azs0t89 Hospital Carmen y Severo Ochoa'),
(3072, 'https://ror.org/02pfqts47', 'es', 1, 'https://ror.org/02pfqts47 Hospital Casa de Salud'),
(3073, 'https://ror.org/01yzgg311', 'es', 1, 'https://ror.org/01yzgg311 Hospital Central de la Cruz Roja San José y Santa Adela'),
(3074, 'https://ror.org/0467j3j44', 'it', 1, 'https://ror.org/0467j3j44 Ospedale di Belcolle'),
(3075, 'https://ror.org/03nw9hs25', 'en', 1, 'https://ror.org/03nw9hs25 Alberta Hospital Edmonton'),
(3076, 'https://ror.org/036sdak78', 'en', 1, 'https://ror.org/036sdak78 Educational Commission for Foreign Medical Graduates'),
(3077, 'https://ror.org/05cetba26', 'en', 1, 'https://ror.org/05cetba26 Edward Hospital'),
(3078, 'https://ror.org/05fz2yc38', 'it', 1, 'https://ror.org/05fz2yc38 Ospedale Bellaria Ospedale Bellaria "Carlo Alberto Pizzardi"'),
(3079, 'https://ror.org/03wed5r38', 'en', 1, 'https://ror.org/03wed5r38 Eginition Hospital'),
(3080, 'https://ror.org/002q1t780', 'en', 1, 'https://ror.org/002q1t780 Henrietta Egleston Hospital for Children'),
(3081, 'https://ror.org/01m7mrx20', 'es', 1, 'https://ror.org/01m7mrx20 Hospital Central Dr. Ignacio Morones Prieto'),
(3082, 'https://ror.org/05fhtd457', 'es', 1, 'https://ror.org/05fhtd457 Hospital Central Militar'),
(3083, 'https://ror.org/03c648b36', 'en', 1, 'https://ror.org/03c648b36 Ehime Prefectural Central Hospital 愛媛県立中央病院'),
(3084, 'https://ror.org/01vk45p32', 'en', 1, 'https://ror.org/01vk45p32 Eiju General Hospital 永寿総合病院'),
(3085, 'https://ror.org/050wjeh45', 'en', 1, 'https://ror.org/050wjeh45 Eisenhower Medical Center'),
(3086, 'https://ror.org/00gs85y70', 'en', 1, 'https://ror.org/00gs85y70 Bellin Memorial Hospital'),
(3087, 'https://ror.org/05n0m7p40', 'fr', 1, 'https://ror.org/05n0m7p40 Hôpital El Ayachi'),
(3088, 'https://ror.org/038152964', 'es', 1, 'https://ror.org/038152964 Hospital Riotinto'),
(3089, 'https://ror.org/057v2pg43', 'fr', 1, 'https://ror.org/057v2pg43 Hôpital Saint-Michel'),
(3090, 'https://ror.org/0065mvt73', 'es', 1, 'https://ror.org/0065mvt73 Hospital Costa del Sol'),
(3091, 'https://ror.org/00rpfyx16', 'en', 1, 'https://ror.org/00rpfyx16 Belvidere Hospital'),
(3092, 'https://ror.org/03w6p2n94', 'en', 1, 'https://ror.org/03w6p2n94 Bendigo Health'),
(3093, 'https://ror.org/01e320272', 'fr', 1, 'https://ror.org/01e320272 Hôpital Saint-Philibert'),
(3094, 'https://ror.org/056yje678', 'fr', 1, 'https://ror.org/056yje678 Hôpital Mustapha Pacha'),
(3095, 'https://ror.org/03jpm9j23', 'pt', 1, 'https://ror.org/03jpm9j23 Hospital da Luz'),
(3096, 'https://ror.org/04skjvf92', 'pt', 1, 'https://ror.org/04skjvf92 Hospital da Restauração'),
(3097, 'https://ror.org/043889z90', 'en', 1, 'https://ror.org/043889z90 The General Hospital of Heraklion "Venizeleio-Pananio" Γενικό Νοσοκομείο Ηρακλείου "Βενιζέλειο - Πανάνειο"'),
(3098, 'https://ror.org/05gf6dk22', 'pt', 1, 'https://ror.org/05gf6dk22 Base Hospital Hospital de Base'),
(3099, 'https://ror.org/04661b187', 'en', 1, 'https://ror.org/04661b187 Beppu Medical Center 別府医療センター'),
(3100, 'https://ror.org/027v86y62', 'en', 1, 'https://ror.org/027v86y62 El Paso County Public Health'),
(3101, 'https://ror.org/000tm9s39', 'fr', 1, 'https://ror.org/000tm9s39 Centre Hospitalier Saint-Charles'),
(3102, 'https://ror.org/04dc8es52', 'de', 1, 'https://ror.org/04dc8es52 Klinik Donaustauf'),
(3103, 'https://ror.org/04cpf2p55', 'en', 1, 'https://ror.org/04cpf2p55 Bess Kaiser Hospital'),
(3104, 'https://ror.org/018mgzn65', 'en', 1, 'https://ror.org/018mgzn65 Baylor Medical Center at Garland'),
(3105, 'https://ror.org/03dwvx056', 'tr', 1, 'https://ror.org/03dwvx056 Elazig Education and Research Hospital Elazığ Eğitim ve Araştırma Hastanesi'),
(3106, 'https://ror.org/0032p1p15', 'en', 1, 'https://ror.org/0032p1p15 Chubu National Hospital 中部国立病院'),
(3107, 'https://ror.org/0269fmf70', 'en', 1, 'https://ror.org/0269fmf70 St. Mary''s Hospital'),
(3108, 'https://ror.org/01rf07780', 'es', 1, 'https://ror.org/01rf07780 Hospital Provincial de Conxo'),
(3109, 'https://ror.org/03eaw8c11', 'en', 1, 'https://ror.org/03eaw8c11 Bethesda North Hospital'),
(3110, 'https://ror.org/02hvsf428', 'nl', 1, 'https://ror.org/02hvsf428 Ziekenhuis Bethesda'),
(3111, 'https://ror.org/012habm93', 'pt', 1, 'https://ror.org/012habm93 Hospital de Egas Moniz'),
(3112, 'https://ror.org/02tvhd105', 'es', 1, 'https://ror.org/02tvhd105 Clemente Álvarez Emergency Hospital Hospital de Emergencias Dr. Clemente Álvarez'),
(3113, 'https://ror.org/027dft319', 'en', 1, 'https://ror.org/027dft319 Bethesda Hospital East'),
(3114, 'https://ror.org/04f86t017', 'es', 1, 'https://ror.org/04f86t017 Hospital de Especialidades'),
(3115, 'https://ror.org/03vwxd822', 'no_lang_code', 1, 'https://ror.org/03vwxd822 Chugoku Rosai Hospital 中国労災病院'),
(3116, 'https://ror.org/00z769k62', 'pt', 1, 'https://ror.org/00z769k62 Hospital de Faro EPE'),
(3117, 'https://ror.org/020m4km16', 'en', 1, 'https://ror.org/020m4km16 Bexar County Medical Examiner''s Office'),
(3118, 'https://ror.org/057b2d479', 'pt', 1, 'https://ror.org/057b2d479 Hospital Maria Pia'),
(3119, 'https://ror.org/02pes1a77', 'de', 1, 'https://ror.org/02pes1a77 Krankenhaus der Elisabethinen'),
(3120, 'https://ror.org/04gw05r18', 'fr', 1, 'https://ror.org/04gw05r18 Centre Hospitalier Victor Dupouy'),
(3121, 'https://ror.org/025714n80', 'es', 1, 'https://ror.org/025714n80 Hospital de Galdakao'),
(3122, 'https://ror.org/03d532p87', 'fr', 1, 'https://ror.org/03d532p87 Hôpital Xavier Arnozan'),
(3123, 'https://ror.org/01gaptw32', 'es', 1, 'https://ror.org/01gaptw32 Hospital de Hellín'),
(3124, 'https://ror.org/01q750e89', 'nl', 1, 'https://ror.org/01q750e89 Elkerliek Ziekenhuis'),
(3125, 'https://ror.org/058qp7v13', 'en', 1, 'https://ror.org/058qp7v13 BGS Global Hospital'),
(3126, 'https://ror.org/03jachw67', 'en', 1, 'https://ror.org/03jachw67 Elliot Hospital'),
(3127, 'https://ror.org/0398yj006', 'es', 1, 'https://ror.org/0398yj006 Hospital Muñiz Hospital de Infecciosas “Dr. Francisco Javier Muñiz"'),
(3128, 'https://ror.org/00q6w3x44', 'en', 1, 'https://ror.org/00q6w3x44 Ellis Hospital'),
(3129, 'https://ror.org/03n34rg04', 'en', 1, 'https://ror.org/03n34rg04 Elmhurst Hospital Center'),
(3130, 'https://ror.org/056rage58', 'en', 1, 'https://ror.org/056rage58 Indira Gandhi Medical College'),
(3131, 'https://ror.org/01mz9wf40', 'en', 1, 'https://ror.org/01mz9wf40 Chu Shang Show Chwan Hospital'),
(3132, 'https://ror.org/03q7y2p06', 'en', 1, 'https://ror.org/03q7y2p06 Ibaraki Prefectural Central Hospital 茨城県立中央病院'),
(3133, 'https://ror.org/05a79ds67', 'no_lang_code', 1, 'https://ror.org/05a79ds67 Bhatia Hospital'),
(3134, 'https://ror.org/05nbsaj33', 'en', 1, 'https://ror.org/05nbsaj33 Bhopal Memorial Hospital & Research Centre'),
(3135, 'https://ror.org/04x1ptk36', 'en', 1, 'https://ror.org/04x1ptk36 Ibis Reproductive Health'),
(3136, 'https://ror.org/02qeysd40', 'en', 1, 'https://ror.org/02qeysd40 Tacoma Community College'),
(3137, 'https://ror.org/00mc91w09', 'it', 1, 'https://ror.org/00mc91w09 Ospedale Cisanello'),
(3138, 'https://ror.org/01va7e105', 'en', 1, 'https://ror.org/01va7e105 Ibis Reproductive Health'),
(3139, 'https://ror.org/02ss35t63', 'en', 1, 'https://ror.org/02ss35t63 Emerson Hospital'),
(3140, 'https://ror.org/041e85345', 'en', 1, 'https://ror.org/041e85345 Bhumibol Adulyadej Hospital โรงพยาบาลภูมิพลอดุลยเดช'),
(3141, 'https://ror.org/03dsgss45', 'ca', 1, 'https://ror.org/03dsgss45 Hospital Mare de Déu de la Mercè'),
(3142, 'https://ror.org/00bmv4102', 'nl', 1, 'https://ror.org/00bmv4102 Emma Children’s Hospital Emma Kinderziekenhuis'),
(3143, 'https://ror.org/00z28d984', 'it', 1, 'https://ror.org/00z28d984 Azienda ospedaliera "Bianchi-Melacrino-Morelli"'),
(3144, 'https://ror.org/03zpnb459', 'no_lang_code', 1, 'https://ror.org/03zpnb459 Bikur Cholim Hospital'),
(3145, 'https://ror.org/05359he25', 'no_lang_code', 1, 'https://ror.org/05359he25 Ibn Sina Hospital مستشفى ابن سينا'),
(3146, 'https://ror.org/0024qhz65', 'en', 1, 'https://ror.org/0024qhz65 Bir Hospital बीर अस्पताल'),
(3147, 'https://ror.org/015a6df35', 'no_lang_code', 1, 'https://ror.org/015a6df35 En Chu Kong Hospital 行天宮醫療志業醫療財團法人恩主公醫院'),
(3148, 'https://ror.org/05mg61p80', 'en', 1, 'https://ror.org/05mg61p80 Englewood Hospital and Medical Center'),
(3149, 'https://ror.org/043zcrg65', 'en', 1, 'https://ror.org/043zcrg65 Birmingham Accident Hospital'),
(3150, 'https://ror.org/01n70p029', 'en', 1, 'https://ror.org/01n70p029 Birmingham and Midland Eye Centre'),
(3151, 'https://ror.org/01xhmje49', 'en', 1, 'https://ror.org/01xhmje49 Birmingham Dental Hospital'),
(3152, 'https://ror.org/051c2ew73', 'es', 1, 'https://ror.org/051c2ew73 Hospital General de La Rioja'),
(3153, 'https://ror.org/023733d09', 'es', 1, 'https://ror.org/023733d09 Hospital de l''Esperança'),
(3154, 'https://ror.org/0457avm18', 'en', 1, 'https://ror.org/0457avm18 Bishop Auckland Hospital'),
(3155, 'https://ror.org/04cy4z909', 'es', 1, 'https://ror.org/04cy4z909 Hospital de Mataró'),
(3156, 'https://ror.org/02z9g9j20', 'en', 1, 'https://ror.org/02z9g9j20 BJC HealthCare'),
(3157, 'https://ror.org/01r9ea713', 'en', 1, 'https://ror.org/01r9ea713 Blackpool Victoria Hospital'),
(3158, 'https://ror.org/011x7hd11', 'de', 1, 'https://ror.org/011x7hd11 München Klinik Bogenhausen'),
(3159, 'https://ror.org/002bjfj29', 'de', 1, 'https://ror.org/002bjfj29 München Klinik Schwabing'),
(3160, 'https://ror.org/004a7s815', 'sv', 1, 'https://ror.org/004a7s815 Blekingesjukhuset'),
(3161, 'https://ror.org/01yvj7247', 'en', 1, 'https://ror.org/01yvj7247 Bnai Zion Medical Center מרכז רפואי בני ציון'),
(3162, 'https://ror.org/01phhgk62', 'en', 1, 'https://ror.org/01phhgk62 Boca Raton Regional Hospital'),
(3163, 'https://ror.org/051mda743', 'en', 1, 'https://ror.org/051mda743 Garrahan Hospital'),
(3164, 'https://ror.org/01dk3f134', 'no_lang_code', 1, 'https://ror.org/01dk3f134 Tokyo Metropolitan Bokutoh Hospital 東京都立墨東病院'),
(3165, 'https://ror.org/053fx7g25', 'en', 1, 'https://ror.org/053fx7g25 Royal Bolton Hospital'),
(3166, 'https://ror.org/05jvra197', 'no_lang_code', 1, 'https://ror.org/05jvra197 JA Shizuoka Koseiren ENSHU hospital じゃ しずおか こせいれん えんしゅ ほsぴたl'),
(3167, 'https://ror.org/05nakwy60', 'en', 1, 'https://ror.org/05nakwy60 Ideta Eye Hospital 出田眼科病院'),
(3168, 'https://ror.org/01df9ep43', 'en', 1, 'https://ror.org/01df9ep43 Era''s Lucknow Medical College and Hospital'),
(3169, 'https://ror.org/05w1yqq10', 'en', 1, 'https://ror.org/05w1yqq10 Israel Defense Forces Medical Corps'),
(3170, 'https://ror.org/043e04s74', 'en', 1, 'https://ror.org/043e04s74 Civil Aerospace Medical Institute'),
(3171, 'https://ror.org/04js17g72', 'en', 1, 'https://ror.org/04js17g72 Ifakara Health Institute'),
(3172, 'https://ror.org/04t77r183', 'es', 1, 'https://ror.org/04t77r183 Hospital Ludovica Hospital de Niños Superiora Sor María Ludovica'),
(3173, 'https://ror.org/046a9t092', 'es', 1, 'https://ror.org/046a9t092 Hospital de Niños de la Santísima Trinidad'),
(3174, 'https://ror.org/00k8adf88', 'en', 1, 'https://ror.org/00k8adf88 Ahmedabad Civil Hospital'),
(3175, 'https://ror.org/05te51w08', 'es', 1, 'https://ror.org/05te51w08 Hospital General de Niños Ricardo Gutierrez'),
(3176, 'https://ror.org/023r6xh67', 'en', 1, 'https://ror.org/023r6xh67 Ignatius Hospital Sint Ignatiusziekenhuis'),
(3177, 'https://ror.org/01wv1aw46', 'en', 1, 'https://ror.org/01wv1aw46 BongSeng Memorial Hospital 봉생병원입니다'),
(3178, 'https://ror.org/00zc7y345', 'pt', 1, 'https://ror.org/00zc7y345 Hospital de São José'),
(3179, 'https://ror.org/02x4pnt63', 'pt', 1, 'https://ror.org/02x4pnt63 Hospital Geral de Bonsucesso'),
(3180, 'https://ror.org/04zjvnp94', 'en', 1, 'https://ror.org/04zjvnp94 Clalit Health Services שירותי בריאות כללית'),
(3181, 'https://ror.org/00t61fh47', 'en', 1, 'https://ror.org/00t61fh47 Ijinkai Takeda General Hospital 武田総合病院は'),
(3182, 'https://ror.org/044ww3909', 'en', 1, 'https://ror.org/044ww3909 Boone Hospital Center'),
(3183, 'https://ror.org/019e4dr88', 'en', 1, 'https://ror.org/019e4dr88 Erie County Medical Center'),
(3184, 'https://ror.org/040bb8882', 'pt', 1, 'https://ror.org/040bb8882 Hospital de São Marcos'),
(3185, 'https://ror.org/04kbvfy96', 'es', 1, 'https://ror.org/04kbvfy96 Hospital de Sagunto'),
(3186, 'https://ror.org/02ybzrf68', 'en', 1, 'https://ror.org/02ybzrf68 Civil Hospital Karachi'),
(3187, 'https://ror.org/02yx11005', 'en', 1, 'https://ror.org/02yx11005 Borders General Hospital'),
(3188, 'https://ror.org/01dqhdd78', 'en', 1, 'https://ror.org/01dqhdd78 Clatterbridge Hospital Ysbyty Clattebridge'),
(3189, 'https://ror.org/021rvrs67', 'ca', 1, 'https://ror.org/021rvrs67 Hospital Sant Pau i Santa Tecla'),
(3190, 'https://ror.org/03964hc96', 'en', 1, 'https://ror.org/03964hc96 Borgess Medical Center'),
(3191, 'https://ror.org/00qezxe61', 'no_lang_code', 1, 'https://ror.org/00qezxe61 Ikeda Municipal Hospital 池田市立病院'),
(3192, 'https://ror.org/02srrbc50', 'en', 1, 'https://ror.org/02srrbc50 Erzurum Bölge Eğitim ve Araştırma Hastanesi Erzurum Regional Training and Research Hospital'),
(3193, 'https://ror.org/04b0jw528', 'en', 1, 'https://ror.org/04b0jw528 Imakiire General Hospital 公益財団法人昭和会 今給黎総合病院'),
(3194, 'https://ror.org/050qpjf10', 'en', 1, 'https://ror.org/050qpjf10 Botsford Hospital'),
(3195, 'https://ror.org/03pzgk858', 'en', 1, 'https://ror.org/03pzgk858 Hospital South West Jutland Sydvestjysk Sygehus'),
(3196, 'https://ror.org/047tjmd17', 'en', 1, 'https://ror.org/047tjmd17 Coastal Area Health Education Center'),
(3197, 'https://ror.org/037s71n47', 'en', 1, 'https://ror.org/037s71n47 Imelda Hospital Imelda ziekenhuis'),
(3198, 'https://ror.org/0484pjq71', 'en', 1, 'https://ror.org/0484pjq71 Box Hill Hospital'),
(3199, 'https://ror.org/02y9x6z24', 'pt', 1, 'https://ror.org/02y9x6z24 Hospital de São Bernardo'),
(3200, 'https://ror.org/01q9r1072', 'en', 1, 'https://ror.org/01q9r1072 Boys Town National Research Hospital'),
(3201, 'https://ror.org/00j9f7w81', 'es', 1, 'https://ror.org/00j9f7w81 Hospital Terrassa'),
(3202, 'https://ror.org/04fkbqt11', 'ro', 1, 'https://ror.org/04fkbqt11 Hospital Colentina Spitalul Clinic Colentina'),
(3203, 'https://ror.org/023dma244', 'en', 1, 'https://ror.org/023dma244 Colchester Hospital'),
(3204, 'https://ror.org/05nmfef18', 'en', 1, 'https://ror.org/05nmfef18 Hoag Memorial Hospital Presbyterian'),
(3205, 'https://ror.org/03b7nc883', 'en', 1, 'https://ror.org/03b7nc883 Colmery-O''Neil VA Medical Center'),
(3206, 'https://ror.org/01xn4ac42', 'en', 1, 'https://ror.org/01xn4ac42 Brandon Regional Health Authority'),
(3207, 'https://ror.org/04nc9r025', 'en', 1, 'https://ror.org/04nc9r025 Colonial War Memorial Hospital'),
(3208, 'https://ror.org/03fakbf87', 'en', 1, 'https://ror.org/03fakbf87 Colorado Permanente Medical Group'),
(3209, 'https://ror.org/0222p1e69', 'en', 1, 'https://ror.org/0222p1e69 Eugene Applebaum College of Pharmacy and Health Sciences'),
(3210, 'https://ror.org/000yct867', 'en', 1, 'https://ror.org/000yct867 Bridgeport Hospital'),
(3211, 'https://ror.org/01qz7fr76', 'en', 1, 'https://ror.org/01qz7fr76 Brighton and Sussex Medical School'),
(3212, 'https://ror.org/04dns5t03', 'en', 1, 'https://ror.org/04dns5t03 Brighton General Hospital'),
(3213, 'https://ror.org/01r9be524', 'en', 1, 'https://ror.org/01r9be524 Bristol Hospital'),
(3214, 'https://ror.org/04saq4y86', 'en', 1, 'https://ror.org/04saq4y86 Indira Gandhi Institute of Child Health'),
(3215, 'https://ror.org/011r34n61', 'en', 1, 'https://ror.org/011r34n61 Indira Gandhi Government Medical College & Hospital इंदिरा गांधी शासकीय वैद्यकीय महाविद्यालय व रुग्णालय'),
(3216, 'https://ror.org/049pcfs17', 'en', 1, 'https://ror.org/049pcfs17 Indira Gandhi Institute of Medical Sciences'),
(3217, 'https://ror.org/05278be16', 'es', 1, 'https://ror.org/05278be16 Hospital del Niño'),
(3218, 'https://ror.org/00nf20x22', 'en', 1, 'https://ror.org/00nf20x22 Indira Gandhi Medical College and Research Institute'),
(3219, 'https://ror.org/013vzz882', 'en', 1, 'https://ror.org/013vzz882 Indraprastha Apollo Hospitals'),
(3220, 'https://ror.org/039bxh911', 'it', 1, 'https://ror.org/039bxh911 Ospedale Infermi di Rimini'),
(3221, 'https://ror.org/01sgn8034', 'en', 1, 'https://ror.org/01sgn8034 Trinitas Regional Medical Center'),
(3222, 'https://ror.org/00e7taa66', 'en', 1, 'https://ror.org/00e7taa66 Ingalls Memorial Hospital'),
(3223, 'https://ror.org/057pdzy92', 'es', 1, 'https://ror.org/057pdzy92 Hospital del Trabajador'),
(3224, 'https://ror.org/034zcbh25', 'tr', 1, 'https://ror.org/034zcbh25 Ergani Devlet Hastanesi'),
(3225, 'https://ror.org/002g9dc27', 'en', 1, 'https://ror.org/002g9dc27 Inoue Hospital 井上病院'),
(3226, 'https://ror.org/036dess41', 'pt', 1, 'https://ror.org/036dess41 Hospital do Desterro'),
(3227, 'https://ror.org/05wf8v135', 'en', 1, 'https://ror.org/05wf8v135 Bronglais General Hospital'),
(3228, 'https://ror.org/029nzwk08', 'en', 1, 'https://ror.org/029nzwk08 Levanger Hospital Sykehuset Levanger'),
(3229, 'https://ror.org/03sjjqm13', 'en', 1, 'https://ror.org/03sjjqm13 Inouye Eye Hospital 井上眼科病院'),
(3230, 'https://ror.org/019tstz42', 'sv', 1, 'https://ror.org/019tstz42 Ersta sjukhus'),
(3231, 'https://ror.org/009rt9f88', 'en', 1, 'https://ror.org/009rt9f88 Inova Loudoun Hospital'),
(3232, 'https://ror.org/03r781319', 'en', 1, 'https://ror.org/03r781319 Bronovo Hospital Bronovo Ziekenhuis'),
(3233, 'https://ror.org/032zc6m47', 'en', 1, 'https://ror.org/032zc6m47 Bronson Methodist Hospital'),
(3234, 'https://ror.org/01ky2n109', 'pt', 1, 'https://ror.org/01ky2n109 Hospital Federal dos Servidores do Estado'),
(3235, 'https://ror.org/04kt0yt69', 'tr', 1, 'https://ror.org/04kt0yt69 Etimesgut Asker Hastanesi'),
(3236, 'https://ror.org/01bhkfn26', 'en', 1, 'https://ror.org/01bhkfn26 Southern Command Hospital'),
(3237, 'https://ror.org/02xa5mk57', 'en', 1, 'https://ror.org/02xa5mk57 Brooklyn Hospital Center'),
(3238, 'https://ror.org/05cx69s52', 'en', 1, 'https://ror.org/05cx69s52 Command Hospital Air Force'),
(3239, 'https://ror.org/037ze7373', 'tr', 1, 'https://ror.org/037ze7373 Etlik Zübeyde Hanım Kadın Hastalıkları Eğitim ve Araştırma Hastanesi'),
(3240, 'https://ror.org/01wf0xv67', 'en', 1, 'https://ror.org/01wf0xv67 Eastern Command Hospital'),
(3241, 'https://ror.org/012vbac09', 'en', 1, 'https://ror.org/012vbac09 Doctors Medical Center'),
(3242, 'https://ror.org/014405c23', 'pt', 1, 'https://ror.org/014405c23 Hospital do Espírito Santo'),
(3243, 'https://ror.org/00hn92440', 'en', 1, 'https://ror.org/00hn92440 Broomfield Hospital'),
(3244, 'https://ror.org/040cn9093', 'en', 1, 'https://ror.org/040cn9093 Community Health Network'),
(3245, 'https://ror.org/01v16x378', 'en', 1, 'https://ror.org/01v16x378 Command Hospital'),
(3246, 'https://ror.org/01jj2sr90', 'en', 1, 'https://ror.org/01jj2sr90 Broward Health Medical Center'),
(3247, 'https://ror.org/022261z88', 'en', 1, 'https://ror.org/022261z88 Evans Army Community Hospital'),
(3248, 'https://ror.org/0028g5429', 'en', 1, 'https://ror.org/0028g5429 Community Medical Center'),
(3249, 'https://ror.org/04m88de33', 'en', 1, 'https://ror.org/04m88de33 Froedtert Menomonee Falls Hospital'),
(3250, 'https://ror.org/03qwghy04', 'en', 1, 'https://ror.org/03qwghy0
Showing 512.00 KB of 26.44 MB. Use Edit/Download for full content.

Directory Contents

Dirs: 6 × Files: 20

Name Size Perms Modified Actions
images DIR
- drwxr-xr-x 2026-04-14 21:04:08
Edit Download
php53 DIR
- drwxr-xr-x 2026-04-14 21:04:06
Edit Download
php56 DIR
- drwxr-xr-x 2026-04-14 21:04:08
Edit Download
php71 DIR
- drwxr-xr-x 2026-04-14 21:04:08
Edit Download
php81 DIR
- drwxr-xr-x 2026-04-14 21:04:06
Edit Download
php82 DIR
- drwxr-xr-x 2026-04-14 21:04:06
Edit Download
503 B lrw-r--r-- 2025-07-14 10:27:06
Edit Download
9.14 KB lrw-r--r-- 2026-04-14 12:33:46
Edit Download
20.62 KB lrw-r--r-- 2026-04-14 11:23:20
Edit Download
60.37 MB lrw-r--r-- 2026-04-14 11:23:20
Edit Download
4.57 KB lrw-r--r-- 2026-04-14 12:33:46
Edit Download
433 B lrw-r--r-- 2025-07-30 09:30:42
Edit Download
9.05 KB lrw-r--r-- 2026-04-14 12:33:46
Edit Download
430 B lrw-r--r-- 2025-07-14 10:27:06
Edit Download
3.98 KB lrw-r--r-- 2026-04-14 12:33:46
Edit Download
3.29 KB lrw-r--r-- 2026-04-14 11:23:20
Edit Download
924 B lrw-r--r-- 2021-12-23 11:54:36
Edit Download
7.74 KB lrw-r--r-- 2026-04-14 12:33:46
Edit Download
803 B lrw-r--r-- 2025-07-14 10:27:06
Edit Download
1.20 KB lrw-r--r-- 2026-04-14 12:33:46
Edit Download
2.00 KB lrw-r--r-- 2025-07-14 10:27:06
Edit Download
26.44 MB lrw-r--r-- 2026-04-14 11:23:20
Edit Download
133.96 MB lrw-r--r-- 2026-04-14 11:23:20
Edit Download
497 B lrw-r--r-- 2025-07-14 10:27:06
Edit Download
11.67 KB lrw-r--r-- 2026-04-14 12:33:46
Edit Download
318 B lrw-r--r-- 2021-12-23 11:54:36
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).